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