home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 March / VPR0303A.ISO / AIBO / PowerMonitor / Makefile
Makefile  |  2002-11-28  |  569b  |  22 lines

  1. #
  2. # Copyright 2002 Sony Corporation 
  3. #
  4. # Permission to use, copy, modify, and redistribute this software for
  5. # non-commercial use is hereby granted.
  6. #
  7. # This software is provided "as is" without warranty of any kind,
  8. # either expressed or implied, including but not limited to the
  9. # implied warranties of fitness for a particular purpose.
  10. #
  11.  
  12. COMPONENTS=PowerMonitor
  13. INSTALLDIR=$(shell pwd)/MS
  14. TARGETS=all install clean
  15.  
  16. .PHONY: $(TARGETS)
  17.  
  18. $(TARGETS):
  19.     for dir in $(COMPONENTS); do \
  20.         (cd $$dir && $(MAKE) DEBUGFLAGS=-DOPENR_DEBUG INSTALLDIR=$(INSTALLDIR) $@) \
  21.     done
  22.