diff --git a/.gitignore b/.gitignore index fe107c2..cdf2ad6 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -/data.json \ No newline at end of file +/data.json +/public \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..20d7fef --- /dev/null +++ b/Makefile @@ -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) \ No newline at end of file