Use the correct type in va_arg call, char is promoted to int before calling
[dragonfly/netmp.git] / libexec / smrsh / Makefile
blobc05d1664690344c0f85d553e653062905ce5a5e5
1 # @(#)Makefile 8.1 (Berkeley) 7/2/95
2 # $FreeBSD: src/libexec/smrsh/Makefile,v 1.1.6.6 2002/03/25 21:31:40 gshapiro Exp $
3 # $DragonFly: src/libexec/smrsh/Makefile,v 1.3 2004/01/31 06:56:40 dillon Exp $
5 SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
6 .PATH: ${SENDMAIL_DIR}/smrsh
8 PROG= smrsh
9 SRCS= smrsh.c
10 MAN= smrsh.8
11 CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include -I.
13 .if exists(${.OBJDIR}/../../lib/libsm)
14 LIBSMDIR:= ${.OBJDIR}/../../lib/libsm
15 .else
16 LIBSMDIR!= cd ${.CURDIR}/../../lib/libsm; make -V .OBJDIR
17 .endif
18 LIBSM:= ${LIBSMDIR}/libsm.a
20 DPADD= ${LIBSM}
21 LDADD= ${LIBSM}
23 SRCS+= sm_os.h
24 CLEANFILES+=sm_os.h
26 # User customizations to the sendmail build environment
27 CFLAGS+=${SENDMAIL_CFLAGS}
28 DPADD+=${SENDMAIL_DPADD}
29 LDADD+=${SENDMAIL_LDADD}
30 LDFLAGS+=${SENDMAIL_LDFLAGS}
32 sm_os.h:
33 ln -sf ${SENDMAIL_DIR}/include/sm/os/sm_os_freebsd.h sm_os.h
35 .include <bsd.prog.mk>