Add Makefile

This commit is contained in:
Dorian Zedler 2021-07-11 09:43:42 +02:00
parent fa7daba41e
commit 05fc2f5456
Signed by: dorian
GPG Key ID: 989DE36109AFA354
2 changed files with 13 additions and 1 deletions

3
.gitignore vendored
View File

@ -1 +1,2 @@
/data.json
/data.json
/public

11
Makefile Normal file
View 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)