10 lines
161 B
Makefile
10 lines
161 B
Makefile
SUBDIRS = bericht
|
|
all:
|
|
for d in $(SUBDIRS); do \
|
|
(cd $$d; make all) \
|
|
done
|
|
upload: all
|
|
rsync -avcL www/ lctp@devkid.net:/
|
|
watch:
|
|
cd bericht && make watch
|