11 lines
No EOL
175 B
Makefile
11 lines
No EOL
175 B
Makefile
DESTDIR=public
|
|
|
|
help:
|
|
@echo "Options:"
|
|
@echo " all Build all"
|
|
|
|
all:
|
|
install -d $(DESTDIR)
|
|
install *.php $(DESTDIR)
|
|
install *.png $(DESTDIR)
|
|
install .htaccess $(DESTDIR)
|