freebsd-dev/usr.sbin/makemap/Makefile
John Birrell 170812ea7a Add snprintf.c to SRCS so that the function quad_to_string exists. The
snprintf function itself is still #ifdef'd out by conf.h. This allows this
program to link when compiled without optimization. With optimization,
the call to quad_to_string gets removed by the compiler. Unfortunately
the linker still links in the quad_to_string function even though it
isn't called. 8-(
1998-08-06 23:01:49 +00:00

13 lines
294 B
Makefile

# @(#)Makefile 8.4 (Berkeley) 6/10/97
PROG= makemap
SRCS= makemap.c safefile.c snprintf.c
MAN8= makemap.8
CFLAGS+=-I${.CURDIR}/../../contrib/sendmail/src -DNEWDB -DNOT_SENDMAIL
.PATH: ${.CURDIR}/../../contrib/sendmail/makemap \
${.CURDIR}/../../contrib/sendmail/src
.include <bsd.prog.mk>