freebsd-ports/textproc/replaceit/files/patch-Makefile
Pete Fritchman 8e17bd7210 add replaceit 1.0.0
A light replacement to the combination of sed/awk/grep/head/tail

PR:		29837
Submitted by:	Patrick Li <pat@databits.net>
2001-08-24 19:21:32 +00:00

18 lines
337 B
Text

--- Makefile.orig Fri Aug 17 20:18:18 2001
+++ Makefile Fri Aug 17 20:20:35 2001
@@ -1,12 +1,11 @@
-PRF=-O2 -Wall
-CC=cc
+CFLAGS+= -Wall
+all: replaceit
replaceit: replaceit.c
- $(CC) $(PRF) replaceit.c -o replaceit
+ $(CC) $(CFLAGS) $< -o $@
clean:
rm replaceit
-all: install
install: replaceit
cp replaceit /usr/local/bin