Files
config/GNUmakefile
2019-12-18 11:25:19 +08:00

15 lines
160 B
Makefile

#
GIT?= git
#
all: pull
install:
./install.sh
pull:
${GIT} pull -v --rebase origin master --recurse-submodules=yes
push: pull
${GIT} push origin master