|
|
| File: [Development] / performer / src / sample / C / GNUmakefile (download)
Revision 1.2, Tue Nov 21 23:40:36 2000 UTC (16 years, 10 months ago) by flynnt
-tom |
#!smake -J 1 #-------------------------------------------------------------------# #-- Makefile for Performer/src/sample directory --# #-------------------------------------------------------------------# #-- RCS version information --# #-- $Revision: 1.2 $ --# #-- $Date: 2000/11/21 23:40:36 $ --# #-------------------------------------------------------------------# #-- #-- definitions #-- #-- directories that are distributed in source form DIRS = \ perfly\ asdfly \ clipfly \ fakeclipfly \ fogfly #-- #-- generic targets #-- #-- default action is to make everything default: ogldso #-- make designated target in subdirectories all debug dso ddso opt dbg oglopt ogldbg ogldso oglddso iglopt igldbg igldso iglddso clean clobber: @for i in $(DIRS); \ do \ echo "\nmaking $$i ($@)"; \ (cd $$i && $(MAKE) -f GNUmakefile $@) || exit 1; \ done