[BACK]Return to GNUmakefile CVS log [TXT][DIR] Up to [Development] / performer / src / pguide / libpf

File: [Development] / performer / src / pguide / libpf / GNUmakefile (download)

Revision 1.1, Tue Nov 21 21:39:36 2000 UTC (16 years, 11 months ago) by flynnt
Branch: MAIN

Initial check-in based on OpenGL Performer 2.4 tree.
-flynnt

#!smake -J 1
#-------------------------------------------------------------------#
#-- Makefile for Performer/src/sample directory                   --#
#-------------------------------------------------------------------#
#-- RCS version information                                       --#
#--   $Revision: 1.1 $                                           --#
#--   $Date: 2000/11/21 21:39:36 $                                --#
#-------------------------------------------------------------------#

#--
#--	definitions
#--

#-- directories that are distributed in source form
DIRS	= \
	C C++

#--
#--	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 Makefile $@) || exit 1; \
	done