summaryrefslogtreecommitdiff
path: root/misc/geekcode/files/patch-aa
blob: 2fe17c0a7c3a58f888b84198f0baa4e4ac2093ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
--- Makefile.orig	Mon Aug 30 15:33:00 1999
+++ Makefile	Thu Sep  2 18:42:00 1999
@@ -1,6 +1,6 @@
-CFLAGS=-O3 -s
+CFLAGS?=-O3 -Wall -s
 TARGET=geekcode
-CC=gcc
+CC?=gcc
 
 SRCFILES = gc_appearance.c    \
            gc_computers.c     \
@@ -24,14 +24,14 @@
 	rm -f $(TARGET) $(LIBFILES)
 
 geekcode:
-	gcc $(CFLAGS) -c gc_appearance.c
-	gcc $(CFLAGS) -c gc_computers.c
-	gcc $(CFLAGS) -c gc_entertainment.c
-	gcc $(CFLAGS) -c gc_lifestyle.c
-	gcc $(CFLAGS) -c gc_politics.c
-	gcc $(CFLAGS) -c gc_type.c
-	gcc $(CFLAGS) -c geekcode.c
-	gcc $(CFLAGS) -o $(TARGET) $(LIBFILES)
+	${CC} $(CFLAGS) -c gc_appearance.c
+	${CC} $(CFLAGS) -c gc_computers.c
+	${CC} $(CFLAGS) -c gc_entertainment.c
+	${CC} $(CFLAGS) -c gc_lifestyle.c
+	${CC} $(CFLAGS) -c gc_politics.c
+	${CC} $(CFLAGS) -c gc_type.c
+	${CC} $(CFLAGS) -c geekcode.c
+	${CC} $(CFLAGS) -o $(TARGET) $(LIBFILES)
 
 install:
 	install -m 755 geekcode /usr/local/bin