diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2010-04-21 21:04:30 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2010-04-21 21:04:30 +0000 |
commit | b563ace3abb30685ae4e3771bc3646753b68812b (patch) | |
tree | d5c3cad0a4d3d7bb5943ff34edc3af8254435a6d /usr.sbin/smtpd/makemap | |
parent | 62c96c6cf46d83ac9608e1a0be3f32b0cba89466 (diff) |
map.c is growing big, split it into three different files:
map.c contains the map API calls as usable by smtpd processes,
map_backend.c contains backend implementations and map_parser.c contains
parser implementations used internally by the map API
Diffstat (limited to 'usr.sbin/smtpd/makemap')
-rw-r--r-- | usr.sbin/smtpd/makemap/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/makemap/Makefile b/usr.sbin/smtpd/makemap/Makefile index 7b68c2fa840..ed147393622 100644 --- a/usr.sbin/smtpd/makemap/Makefile +++ b/usr.sbin/smtpd/makemap/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.8 2009/11/08 23:15:03 gilles Exp $ +# $OpenBSD: Makefile,v 1.9 2010/04/21 21:04:29 gilles Exp $ .PATH: ${.CURDIR}/.. @@ -16,7 +16,7 @@ CFLAGS+= -Wmissing-declarations CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual CFLAGS+= -Wsign-compare -Wbounded -SRCS= parse.y makemap.c aliases.c expand.c map.c log.c util.c +SRCS= parse.y makemap.c aliases.c expand.c map.c map_backend.c map_parser.c log.c util.c DPADD+= ${LIBUTIL} LDADD+= -lutil .include <bsd.prog.mk> |