opnsense-ports/security/pscan/files/patch-Makefile
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

18 lines
416 B
Text

--- Makefile.orig Sat Sep 2 17:47:37 2000
+++ Makefile Sat Sep 2 17:48:38 2000
@@ -13,11 +13,14 @@
#CC=gcc -Wall -g
#LEX=flex
+CC ?= gcc
+CFLAGS ?= -O -pipe
+
pscan: scanner.yy.o pscan.o
$(CC) scanner.yy.o pscan.o -o pscan
scanner.yy.o: scanner.yy.c
- $(CC) -c scanner.yy.c -o scanner.yy.o
+ $(CC) $(CFLAGS) -c scanner.yy.c -o scanner.yy.o
scanner.yy.c: scanner.l
$(LEX) -t scanner.l > scanner.yy.c