aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Lilleengen <lulf@FreeBSD.org>2008-10-19 08:43:16 +0000
committerUlf Lilleengen <lulf@FreeBSD.org>2008-10-19 08:43:16 +0000
commitfc84e5f31b647de417569f1fa3f3a490e5c4c158 (patch)
tree7bc7a3eba188c857a0760bc20c2c90f0647ca3fb
parentd7f03759d5b1ecfad6b123e6b34d91c81d918a25 (diff)
parent8d1f54dbaa5ef5168b896f6562c06e9da6b23881 (diff)
Notes
-rw-r--r--usr.bin/csup/Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/usr.bin/csup/Makefile b/usr.bin/csup/Makefile
new file mode 100644
index 000000000000..b37e26153a94
--- /dev/null
+++ b/usr.bin/csup/Makefile
@@ -0,0 +1,36 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../contrib/csup
+
+PROG= csup
+SRCS= attrstack.c \
+ config.c \
+ detailer.c \
+ diff.c \
+ fattr.c \
+ fixups.c \
+ fnmatch.c \
+ globtree.c \
+ idcache.c \
+ keyword.c \
+ lister.c \
+ main.c \
+ misc.c \
+ mux.c \
+ parse.y \
+ pathcomp.c \
+ proto.c \
+ status.c \
+ stream.c \
+ threads.c \
+ token.l \
+ updater.c
+
+CFLAGS+= -I. -I${.CURDIR}/../../contrib/csup
+CFLAGS+= -DHAVE_FFLAGS -DNDEBUG
+WARNS?= 6
+
+DPADD= ${LIBCRYPTO} ${LIBZ} ${LIBPTHREAD}
+LDADD= -lcrypto -lz -lpthread
+
+.include <bsd.prog.mk>