1
0
mirror of https://github.com/agdsn/ancient-weatherstation.git synced 2026-06-19 23:07:59 +00:00
Files
ancient-weatherstation/cronjob/Makefile
T
losinshi d471811195 Makefiles
git-svn-id: file:///home/jan/tmp/wetterstation/trunk@130 dd492736-c11a-0410-ad51-8c26713eaf7f
2006-09-24 18:39:10 +00:00

15 lines
311 B
Makefile

MakeDirs = checksensor chart
InstallDirs = checksensor chart
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