1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-15 23:50:44 +00:00
freebsd-ports/games/pmars/files/patch-aa
Steve Price 6a42820fe3 Import of pmars version 0.8
A portable corewar system with ICWS'94 extensions.

PR:		10104
Submitted by:	Gianmarco Giovannelli <gmarco@giovannelli.it>
1999-04-02 04:10:14 +00:00

26 lines
830 B
Plaintext

--- makefile.orig Mon Feb 15 17:07:29 1999
+++ makefile Mon Feb 15 17:07:39 1999
@@ -15,11 +15,11 @@
# (5) -DSMALLMEM 16-bit addresses, less memory
# (6) -DXWINGRAPHX 1 X-Windows graphics (UNIX)
-CFLAGS = -O -DEXT94
+CFLAGS = -O -I/usr/X11R6/include -DEXT94 -DGRAPHX -DXWINGRAPHX
LFLAGS = -x
LIB = -lcurses -ltermlib # enable this one for curses display
# LIB = -lvgagl -lvga # enable this one for Linux/SVGA
-# LIB = -lX11 # enable this one for X11
+LIB = -L/usr/X11R6/lib -lX11 # enable this one for X11
.SUFFIXES: .o .c .c~ .man .doc .6
MAINFILE = pmars
@@ -30,7 +30,7 @@
OBJ2 = clparse.o global.o token.o
OBJ3 = str_eng.o
-ALL: flags $(MAINFILE) man doc
+all: flags $(MAINFILE) man doc
flags:
@echo Making $(MAINFILE) with compiler flags $(CFLAGS)