Add Makefile
This commit is contained in:
parent
fa7daba41e
commit
05fc2f5456
2 changed files with 13 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
/data.json
|
||||
/data.json
|
||||
/public
|
11
Makefile
Normal file
11
Makefile
Normal file
|
@ -0,0 +1,11 @@
|
|||
DESTDIR=public
|
||||
|
||||
help:
|
||||
@echo "Options:"
|
||||
@echo " all Build all"
|
||||
|
||||
all:
|
||||
install -d $(DESTDIR)
|
||||
install *.php $(DESTDIR)
|
||||
install *.png $(DESTDIR)
|
||||
install .htaccess $(DESTDIR)
|
Loading…
Reference in a new issue