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

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

Revision 1.1, Tue Nov 21 21:39:46 2000 UTC (16 years, 10 months ago) by flynnt
Branch: MAIN
CVS Tags: HEAD

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

#-------------------------------------------------------------------#
#-- Makefile for Performer/src/sample directory                   --#
#-------------------------------------------------------------------#
#-- RCS version information                                       --#
#--   $Revision: 1.1 $                                           --#
#--   $Date: 2000/11/21 21:39:46 $                                --#
#-------------------------------------------------------------------#
#

ifndef PFROOT
PFROOT = $(ROOT)
endif


CMDS = \
	rgb2raw \
	rsets \
	shrink \
	viewtile

all: $(CMDS)

rgb2raw: rgb2raw.c
	cc -o $@ rgb2raw.c

rsets: rsets.c
	cc -o $@ rsets.c

shrink: shrink.c
	cc -o $@ shrink.c

viewtile: viewtile.c
	cc -o $@ viewtile.c -lGL -L/usr/X11R6/lib -lX11 -lm

.c:
	cc -o $@ $< -limage
.C:
	CC -o $@ $< 

clean:
	rm -f $(CMDS)