home *** CD-ROM | disk | FTP | other *** search
Makefile | 2002-11-28 | 569 b | 22 lines |
- #
- # Copyright 2002 Sony Corporation
- #
- # Permission to use, copy, modify, and redistribute this software for
- # non-commercial use is hereby granted.
- #
- # This software is provided "as is" without warranty of any kind,
- # either expressed or implied, including but not limited to the
- # implied warranties of fitness for a particular purpose.
- #
-
- COMPONENTS=PowerMonitor
- INSTALLDIR=$(shell pwd)/MS
- TARGETS=all install clean
-
- .PHONY: $(TARGETS)
-
- $(TARGETS):
- for dir in $(COMPONENTS); do \
- (cd $$dir && $(MAKE) DEBUGFLAGS=-DOPENR_DEBUG INSTALLDIR=$(INSTALLDIR) $@) \
- done
-