forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
28 lines
648 B
Text
28 lines
648 B
Text
--- makefile.orig 2010-09-01 10:41:27.655060824 +0200
|
|
+++ makefile 2010-09-01 10:46:21.341029572 +0200
|
|
@@ -320,13 +320,13 @@ IS_INTERACTIVE= yes
|
|
#ifdef VMS
|
|
CC = cc
|
|
#else
|
|
-CC = gcc
|
|
+CC ?= gcc
|
|
#endif
|
|
|
|
#ifdef DEVELOPER
|
|
-CC_OPTIONS = -c -g
|
|
+CC_OPTIONS = -c -g ${CFLAGS}
|
|
#else
|
|
-CC_OPTIONS = -c -g
|
|
+CC_OPTIONS = -c -g ${CFLAGS}
|
|
#endif
|
|
|
|
|
|
@@ -344,7 +344,7 @@ LIBS = -lcursesX -o epte
|
|
LIBS = -lncurses -o epte
|
|
#endif
|
|
|
|
-DISTNAME=/usr/bin
|
|
+DISTNAME=${PREFIX}
|
|
|
|
MAIN = ask_user.o bell.o bold.o blink.o draw_blocks.o draw_table.o endprog.o listcommand.o epte.o make_coordinates.o reverse.o setaudio.o setinput.o table_key.o ttflush.o ttinp.o
|
|
|