diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2015-12-01 09:58:39 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2015-12-01 09:58:39 +0000 |
commit | 01b3f3a5fd053fba2994ac8e0233430eba46f632 (patch) | |
tree | 253e18dc9798c9ec7a328bb3ee48252f969e75e3 /usr.sbin/smtpd | |
parent | 1b9b90373ad2762d7b601050448c1972cc3733d2 (diff) |
cleanup Makefile
Diffstat (limited to 'usr.sbin/smtpd')
-rw-r--r-- | usr.sbin/smtpd/smtpctl/Makefile | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/usr.sbin/smtpd/smtpctl/Makefile b/usr.sbin/smtpd/smtpctl/Makefile index 08950cdf14f..7f9f8a43dbf 100644 --- a/usr.sbin/smtpd/smtpctl/Makefile +++ b/usr.sbin/smtpd/smtpctl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.39 2015/10/09 14:37:38 gilles Exp $ +# $OpenBSD: Makefile,v 1.40 2015/12/01 09:58:38 gilles Exp $ .PATH: ${.CURDIR}/.. @@ -12,7 +12,7 @@ BINDIR= /usr/sbin MAN= smtpctl.8 MLINKS= smtpctl.8 mailq.8 -CFLAGS+= -fstack-protector-all +CFLAGS+= -fstack-protector-all CFLAGS+= -I${.CURDIR}/.. CFLAGS+= -Wall -Wstrict-prototypes -Wmissing-prototypes CFLAGS+= -Wmissing-declarations @@ -20,11 +20,21 @@ CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual CFLAGS+= -Wsign-compare CFLAGS+= -DNO_IO -SRCS= enqueue.c parser.c log.c envelope.c crypto.c -SRCS+= queue_backend.c queue_fs.c -SRCS+= smtpctl.c util.c -SRCS+= compress_backend.c compress_gzip.c -SRCS+= to.c expand.c tree.c dict.c +SRCS= enqueue.c +SRCS+= parser.c +SRCS+= log.c +SRCS+= envelope.c +SRCS+= crypto.c +SRCS+= queue_backend.c +SRCS+= queue_fs.c +SRCS+= smtpctl.c +SRCS+= util.c +SRCS+= compress_backend.c +SRCS+= compress_gzip.c +SRCS+= to.c +SRCS+= expand.c +SRCS+= tree.c +SRCS+= dict.c LDADD+= -lutil -lz -lcrypto DPADD+= ${LIBUTIL} ${LIBZ} ${LIBCRYPTO} |