home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 April / VPR0304.ISO / AIBO / HttpTest / Makefile
Makefile  |  2003-01-28  |  227b  |  11 lines

  1. COMPONENTS=HttpTest ../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.