13 lines
304 B
Makefile
13 lines
304 B
Makefile
SUBDIRS = bericht
|
|
all:
|
|
for d in $(SUBDIRS); do \
|
|
(cd $$d; make all) \
|
|
done
|
|
upload: all
|
|
sed -i 's/Stand: [^<]\+/Stand: $(shell date +'%T %d.%m.%Y')/' www/index.html
|
|
rsync --chmod=Du=rwx,Dg=rx,Do=rx,Fu=rw,Fg=r,Fo=r -avcL www/ deploy@lctp:/srv/http/lctp
|
|
watch:
|
|
cd bericht && make watch
|
|
|
|
.PHONY: all
|