home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 March / VPR0303A.ISO / AIBO / AiboBiff2 / Makefile
Makefile  |  2002-12-19  |  296b  |  11 lines

  1. COMPONENTS=AiboBiff MailChecker ../MoNet/MoNet ../MoNet/MotionAgents ../MoNet/SoundAgent ../PowerMonitor/PowerMonitor
  2. INSTALLDIR=$(shell pwd)/MS
  3. TARGETS=all install clean
  4.  
  5. .PHONY: $(TARGETS)
  6.  
  7. $(TARGETS):
  8.     for dir in $(COMPONENTS); do \
  9.         (cd $$dir && $(MAKE) INSTALLDIR=$(INSTALLDIR) $@) \
  10.     done
  11.