mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-04 12:52:15 +00:00
Add make glue for building csup. Not yet connected to the build.
This commit is contained in:
parent
c57c4a8db1
commit
dd78bf1a6a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=156233
35
usr.bin/csup/Makefile
Normal file
35
usr.bin/csup/Makefile
Normal file
@ -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>
|
Loading…
Reference in New Issue
Block a user