aboutsummaryrefslogtreecommitdiff
path: root/misc/dog/files
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2000-06-10 05:45:34 +0000
committerWill Andrews <will@FreeBSD.org>2000-06-10 05:45:34 +0000
commita01d4b6f71708d9f894a7cb174cfd864e51bebf2 (patch)
treee77028b25c72f2f23334695b14d1f8b36dea90d3 /misc/dog/files
parent27c85675a7333690e8787adcec6c34cf11359805 (diff)
downloadports-a01d4b6f71708d9f894a7cb174cfd864e51bebf2.tar.gz
ports-a01d4b6f71708d9f894a7cb174cfd864e51bebf2.zip
Notes
Diffstat (limited to 'misc/dog/files')
-rw-r--r--misc/dog/files/patch-aa24
1 files changed, 24 insertions, 0 deletions
diff --git a/misc/dog/files/patch-aa b/misc/dog/files/patch-aa
new file mode 100644
index 000000000000..1ad0b0056a2e
--- /dev/null
+++ b/misc/dog/files/patch-aa
@@ -0,0 +1,24 @@
+--- Makefile Tue Jul 13 14:32:24 1999
++++ Makefile.new Sat Jun 10 01:27:09 2000
+@@ -13,17 +13,18 @@
+
+ INSTALL = /usr/bin/install -c
+ OBJS = dog.o getopt.o getopt1.o
+-CFLAGS = -O3 -Wall
++CC ?= cc
++CFLAGS ?= -O -pipe
+
+ prefix = /usr/local
+ bindir = ${prefix}/bin
+ mandir = ${prefix}/man
+
+ %.o: %.c
+- gcc ${CFLAGS} -c $< -o $@
++ $(CC) ${CFLAGS} -c $< -o $@
+
+ dog: ${OBJS}
+- gcc ${CFLAGS} -o dog ${OBJS}
++ $(CC) ${CFLAGS} -o dog ${OBJS}
+
+ install: dog
+ $(INSTALL) -m 644 dog.1 ${mandir}/man1