ports/security/identify/files/patch-Makefile
Dmitry Marakasov fcf18b10a4 - Add LICENSE
- Switch to options helpers
- Regenerate patches with `make makepatch`
2016-04-24 09:02:54 +00:00

16 lines
384 B
Text

--- Makefile.orig 1992-07-20 16:01:27 UTC
+++ Makefile
@@ -1,2 +1,11 @@
-identify: identify.c
- $(CC) -o identify identify.c -lauthuser
+
+CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib
+
+all: identify
+
+install: identify
+ install identify ${PREFIX}/libexec
+ install README ${PREFIX}/share/doc/identify
+
+identify: identify.o
+ $(CC) $(CFLAGS) -o identify identify.o -lident