1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/games/flightgear-data/patches.tools/Makefile.gpc

20 lines
349 B
Makefile
Raw Normal View History

# 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