aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/csup
diff options
context:
space:
mode:
authorMaxime Henrion <mux@FreeBSD.org>2006-03-03 04:28:13 +0000
committerMaxime Henrion <mux@FreeBSD.org>2006-03-03 04:28:13 +0000
commitdd78bf1a6a25383d33f342cf4edb085f0c6adcf7 (patch)
tree2c1d77350569f35c45a2e43bf7a242677206d982 /usr.bin/csup
parentc57c4a8db1c9c84b531de1df5039962b88b0b171 (diff)
downloadsrc-dd78bf1a6a25383d33f342cf4edb085f0c6adcf7.tar.gz
src-dd78bf1a6a25383d33f342cf4edb085f0c6adcf7.zip
Add make glue for building csup. Not yet connected to the build.
Notes
Notes: svn path=/head/; revision=156233
Diffstat (limited to 'usr.bin/csup')
-rw-r--r--usr.bin/csup/Makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/usr.bin/csup/Makefile b/usr.bin/csup/Makefile
new file mode 100644
index 000000000000..c2b5ad71b5b6
--- /dev/null
+++ b/usr.bin/csup/Makefile
@@ -0,0 +1,35 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../contrib/csup
+
+PROG= csup
+SRCS= attrstack.c attrstack.h \
+ config.c config.h \
+ detailer.c detailer.h \
+ diff.c diff.h \
+ fattr.c fattr.h fattr_bsd.h \
+ fixups.c fixups.h \
+ fnmatch.c fnmatch.h \
+ globtree.c globtree.h \
+ keyword.c keyword.h \
+ lister.c lister.h \
+ main.c main.h \
+ misc.c misc.h \
+ mux.c mux.h \
+ parse.h parse.y \
+ pathcomp.c pathcomp.h \
+ proto.c proto.h \
+ status.c status.h \
+ stream.c stream.h \
+ threads.c threads.h \
+ token.h token.l \
+ updater.c updater.h
+
+CFLAGS+=-I${.CURDIR} -I${.CURDIR}/../../contrib/csup
+CFLAGS+=-DHAVE_FFLAGS -DNDEBUG -pthread
+WARNS?= 6
+
+DPADD= ${LIBCRYPTO} ${LIBZ}
+LDADD= -lcrypto -lz
+
+.include <bsd.prog.mk>