Change Makefile to GNUmakefile.

This commit is contained in:
Gea-Suan Lin
2019-12-18 11:25:19 +08:00
parent 06cac869eb
commit fd1a6ffeed

14
GNUmakefile Normal file
View File

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