1
0
mirror of https://github.com/agdsn/ancient-weatherstation.git synced 2026-06-19 14:58:00 +00:00

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
+14
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