freebsd-ports/games/fgfs-base/patches.tools/Makefile.gpc
Chris Piazza a12cebc971 FlightGear, a free, multi-platform civil aviation flight simulator.
A 3d accelerator card supported by Mesa is highly recommended (3dfx
voodoo/voodo2 / nvidia riva tnt are known to work.)

PR:		12483
Submitted by:	Brian Buchanan <brian@CSUA.Berkeley.EDU>
1999-07-03 06:36:37 +00:00

20 lines
349 B
Makefile

# Unix/Linux makefile for GPC 2.31
#
# Riley Rainey (riley.rainey@websimulations.com)
CFLAGS = -O -g
libgpc.a: gpc.o
rm -f $@
ar cr $@ $<
ranlib $@
clean:
rm -f libgpc.a *.o core *~
install: libgpc.a
-mkdir -p ${PREFIX}/lib
-mkdir -p ${PREFIX}/include
install -c libgpc.a ${PREFIX}/lib/libgpc.a
install -c gpc.h ${PREFIX}/include/gpc.h