|
|
| File: [Development] / performer / src / GNUmakefile (download)
Revision 1.2, Tue Nov 21 23:34:43 2000 UTC (16 years, 10 months ago) by flynnt
Had to change 'Makefile' to 'GNUmakefile' -tom |
#-------------------------------------------------------------------# #-- Makefile for Performer/src directory --# #-------------------------------------------------------------------# #-- RCS version information --# #-- $Revision: 1.2 $ --# #-- $Date: 2000/11/21 23:34:43 $ --# #-------------------------------------------------------------------# #-------------------------------------------------------------------# #-- This makefile builds the programs in IRIS Performer's sample --# #-- directories. The default make target makes "opt" versions of --# #-- each program and library. Other (actions) targets are: --# #-- build debugging versions: dbg (or debug) --# #-- build optimized versions: opt (or optimize) --# #-- build dynamic shared object versions: dso --# #-- remove all unneeded files after a build: clean --# #-- remove all machine generated files: clobber --# #-------------------------------------------------------------------# #-- #-- definitions #-- #-- directories that need building DIRS = \ lib \ conv \ sample \ pguide #-- #-- generic targets #-- #-- default action is to make optimized non-debug versions default: oglddso #-- make designated target in subdirectories all debug dbg opt dso ddso iglopt igldbg igldso iglddso oglopt ogldbg ogldso oglddso clean clobber: @for i in $(DIRS); \ do \ echo "\nmaking $$i ($@)"; \ (cd $$i && $(MAKE) -f GNUmakefile $@) || exit 1; \ done