Forgotten Makefile added

git-svn-id: file:///home/jan/tmp/wetterstation/trunk@151 dd492736-c11a-0410-ad51-8c26713eaf7f
This commit is contained in:
losinshi 2006-09-27 14:12:09 +00:00
parent 3b301b4bee
commit 5eedbd16a5
1 changed files with 14 additions and 0 deletions

14
webstuff/Makefile Normal file
View File

@ -0,0 +1,14 @@
MakeDirs =
InstallDirs = frontend
binary:
for i in $(MakeDirs); do $(MAKE) -C $$i ; done
debug:
for i in $(MakeDirs); do $(MAKE) -C $$i debug; done
install:
for i in $(InstallDirs); do $(MAKE) -C $$i install; done
clean:
for i in $(MakeDirs); do $(MAKE) -C $$i clean; done