diff options
author | John Birrell <jb@FreeBSD.org> | 1998-08-20 21:45:46 +0000 |
---|---|---|
committer | John Birrell <jb@FreeBSD.org> | 1998-08-20 21:45:46 +0000 |
commit | 62d43a3bfcc2f308fa96d56e311361b35535118b (patch) | |
tree | 48e78c20ad4ce560d865788402f9a6d2c8f2b283 /games | |
parent | 6bdef94d873c4ff849a9341f03ed5577171a4107 (diff) | |
download | src-test2-62d43a3bfcc2f308fa96d56e311361b35535118b.tar.gz src-test2-62d43a3bfcc2f308fa96d56e311361b35535118b.zip |
Notes
Diffstat (limited to 'games')
-rw-r--r-- | games/phantasia/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/phantasia/Makefile b/games/phantasia/Makefile index 7108267cbb2b..6174a4696a87 100644 --- a/games/phantasia/Makefile +++ b/games/phantasia/Makefile @@ -18,7 +18,7 @@ stamp.setuprun: monsters.asc setup touch ${.TARGET} setup: phantglobs.o setup.o ${LIBM} - ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} phantglobs.o setup.o -lm + ${CC} -static ${CFLAGS} ${LDFLAGS} -o ${.TARGET} phantglobs.o setup.o -lm beforeinstall: ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 660 \ @@ -27,7 +27,7 @@ beforeinstall: # Make Phantasia map. Change the map commands reflect your installation. # PLOTDEVICE is used for plotting the map. Change as appropriate. map: map.c - ${CC} -O ${.CURDIR}/map.c -lplot -o ${.TARGET} + ${CC} -static -O ${.CURDIR}/map.c -lplot -o ${.TARGET} ./map | plot > /dev/tty .include <bsd.prog.mk> |