mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
27 lines
557 B
Plaintext
27 lines
557 B
Plaintext
|
--- Makefile.orig Wed Feb 9 07:18:28 2000
|
||
|
+++ Makefile Thu Mar 2 00:35:42 2000
|
||
|
@@ -2,11 +2,12 @@
|
||
|
## Customizable Shit #######################################
|
||
|
############################################################
|
||
|
|
||
|
-CC = gcc
|
||
|
+CC ?= gcc
|
||
|
OUTNAME = ppptraf
|
||
|
|
||
|
#XCFLAGS = -DDEBUG
|
||
|
-XCFLAGS = -O3 -pedantic -fomit-frame-pointer
|
||
|
+CFLAGS ?= -O3 -fomit-frame-pointer
|
||
|
+CFLAGS += -pedantic
|
||
|
#XCFLAGS = -g
|
||
|
#XLIBS = -ldl ? -lpthread ?
|
||
|
|
||
|
@@ -21,7 +22,7 @@
|
||
|
#LIBS = -lpthread -lncurses
|
||
|
|
||
|
# FreeBSD
|
||
|
-CFLAGS =
|
||
|
+#CFLAGS =
|
||
|
LIBS = -pthread -lncurses
|
||
|
|
||
|
# Solaris
|