1
0
mirror of https://github.com/agdsn/ancient-weatherstation.git synced 2026-06-19 23:07:59 +00:00
Files
ancient-weatherstation/webstuff/Makefile
T
losinshi 5eedbd16a5 Forgotten Makefile added
git-svn-id: file:///home/jan/tmp/wetterstation/trunk@151 dd492736-c11a-0410-ad51-8c26713eaf7f
2006-09-27 14:12:09 +00:00

15 lines
285 B
Makefile

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