mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
a12cebc971
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>
20 lines
349 B
Makefile
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
|