1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-07 22:58:11 +00:00
freebsd-ports/misc/geekcode/files/patch-aa
1999-09-18 19:45:11 +00:00

37 lines
980 B
Plaintext

--- Makefile.orig Mon Sep 13 14:03:56 1999
+++ Makefile Sat Sep 18 12:42:20 1999
@@ -1,6 +1,6 @@
-CFLAGS=-O3 -s
+CFLAGS?=-O3 -s
TARGET=geekcode
-CC=gcc
+CC?=gcc
SRCFILES = gc_appearance.c \
gc_computers.c \
@@ -26,15 +26,15 @@
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 gc_consoleio.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 gc_consoleio.c
+ ${CC} $(CFLAGS) -c geekcode.c
+ ${CC} $(CFLAGS) -o $(TARGET) $(LIBFILES)
install:
install -m 755 geekcode /usr/local/bin