summaryrefslogtreecommitdiff
path: root/games/xroads/files/patch-aa
diff options
context:
space:
mode:
Diffstat (limited to 'games/xroads/files/patch-aa')
-rw-r--r--games/xroads/files/patch-aa47
1 files changed, 35 insertions, 12 deletions
diff --git a/games/xroads/files/patch-aa b/games/xroads/files/patch-aa
index 1b96a9c2391a..6fb4422b3bce 100644
--- a/games/xroads/files/patch-aa
+++ b/games/xroads/files/patch-aa
@@ -1,20 +1,43 @@
---- Makefile Mon Jun 29 22:40:15 1998
-+++ /home/andy/tmp/wrk/Makefile Tue Jun 30 15:15:12 1998
-@@ -31,7 +31,7 @@
- # window and monochrome graphics.
+--- Makefile Mon Aug 3 17:24:42 1998
++++ /home/andy/tmp/wrk/Makefile Tue Aug 4 12:55:37 1998
+@@ -5,7 +5,11 @@
+ # optimizations. Check the manual for your compiler.
###########################################################################
--FLAGS = -O3 -DXPLOSIONS -DGAMEDELAY=10000
-+FLAGS= ${CFLAGS} -DXPLOSIONS -DGAMEDELAY=10000 -I${X11BASE}/include
+-FLAGS = -O2 -g -Wall
++CFLAGS?= -O2 -g -Wall
++PREFIX?= /usr/X11R6
++DATADIR?= $(PREFIX)/share/xroads
++INCLUDE?= -I/usr/X11R6/include
++LIBS?= -L/usr/X11R6/lib -lX11 -lm
# These lines ain't needed... but I'm not taking 'em out yet
#BOGOMIPS = `grep bogomips /proc/cpuinfo | awk '{ printf("%s", $$3) }'`
-@@ -48,7 +48,7 @@
- # Make sure there is a / at the end of the path
+@@ -36,7 +40,7 @@
###########################################################################
--XRMPATH = ./
-+XRMPATH = ${X11BASE}/share/xroads/
+ # Your C compiler
+-CC = gcc
++CC?= gcc
- ###########################################################################
- # Links necessary for X11
+ # Your tar
+ TAR = tar
+@@ -54,12 +58,12 @@
+
+ ## "all" of course builds XRoads.
+ all:
+- $(CC) $(FLAGS) -c chardata.c
+- $(CC) $(FLAGS) -c tiledata.c
+- $(CC) $(FLAGS) -c fileops.c
+- $(CC) $(FLAGS) -c ai.c
+- $(CC) $(FLAGS) -c screens.c
+- $(CC) $(FLAGS) $(LINK) -o xroads xroads.c chardata.o tiledata.o fileops.o ai.o screens.o
++ $(CC) $(CFLAGS) $(INCLUDE) -DDATADIR=\"$(DATADIR)\" -c chardata.c
++ $(CC) $(CFLAGS) $(INCLUDE) -DDATADIR=\"$(DATADIR)\" -c tiledata.c
++ $(CC) $(CFLAGS) $(INCLUDE) -DDATADIR=\"$(DATADIR)\" -c fileops.c
++ $(CC) $(CFLAGS) $(INCLUDE) -DDATADIR=\"$(DATADIR)\" -c ai.c
++ $(CC) $(CFLAGS) $(INCLUDE) -DDATADIR=\"$(DATADIR)\" -c screens.c
++ $(CC) $(CFLAGS) $(INCLUDE) -DDATADIR=\"$(DATADIR)\" $(LIBS) -o xroads xroads.c chardata.o tiledata.o fileops.o ai.o screens.o
+
+ ## "quick" just recompiles xroads.c and links it with the existing .o's
+ ## do NOT use this unless you've been altering my code :P