Deleted Added
full compact
Makefile (229112) Makefile (232930)
1# $FreeBSD: stable/9/usr.bin/vacation/Makefile 229112 2011-12-31 15:03:29Z dim $
1# $FreeBSD: stable/9/usr.bin/vacation/Makefile 232930 2012-03-13 18:39:57Z dim $
2
3SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
4.PATH: ${SENDMAIL_DIR}/vacation
5
6PROG= vacation
7SRCS= vacation.c
8CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include -I.
9CFLAGS+=-DNEWDB -DNOT_SENDMAIL
10CFLAGS+=-D_FFR_LISTDB -D_FFR_DEBUG
11
12WARNS?= 2
13
2
3SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
4.PATH: ${SENDMAIL_DIR}/vacation
5
6PROG= vacation
7SRCS= vacation.c
8CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include -I.
9CFLAGS+=-DNEWDB -DNOT_SENDMAIL
10CFLAGS+=-D_FFR_LISTDB -D_FFR_DEBUG
11
12WARNS?= 2
13
14.if ${CC:T:Mclang} == "clang"
15# Unfortunately, clang gives warnings about sendmail code that cannot
16# be turned off yet. Since this is contrib code, and we don't really
17# care about the warnings, just make them non-fatal for now.
14# Unfortunately, clang gives warnings about sendmail code that cannot
15# be turned off yet. Since this is contrib code, and we don't really
16# care about the warnings, just make them non-fatal for now.
18NO_WERROR=
19.endif
17NO_WERROR.clang=
20
21LIBSMDIR= ${.OBJDIR}/../../lib/libsm
22LIBSM= ${LIBSMDIR}/libsm.a
23
24LIBSMDBDIR= ${.OBJDIR}/../../lib/libsmdb
25LIBSMDB= ${LIBSMDBDIR}/libsmdb.a
26
27LIBSMUTILDIR= ${.OBJDIR}/../../lib/libsmutil

--- 18 unchanged lines hidden ---
18
19LIBSMDIR= ${.OBJDIR}/../../lib/libsm
20LIBSM= ${LIBSMDIR}/libsm.a
21
22LIBSMDBDIR= ${.OBJDIR}/../../lib/libsmdb
23LIBSMDB= ${LIBSMDBDIR}/libsmdb.a
24
25LIBSMUTILDIR= ${.OBJDIR}/../../lib/libsmutil

--- 18 unchanged lines hidden ---