ltcp/Makefile

13 lines
304 B
Makefile
Raw Permalink Normal View History

2013-10-21 18:47:58 +00:00
SUBDIRS = bericht
all:
for d in $(SUBDIRS); do \
(cd $$d; make all) \
done
2013-10-21 18:38:59 +00:00
upload: all
2013-11-07 11:43:16 +00:00
sed -i 's/Stand: [^<]\+/Stand: $(shell date +'%T %d.%m.%Y')/' www/index.html
2013-11-25 14:22:51 +00:00
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
2014-01-16 13:33:57 +00:00
.PHONY: all