mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-01 08:27:59 +00:00
07b202a847
get rid of testing explicitly for clang (using ${CC:T:Mclang}) in individual Makefiles. Instead, use the following extra macros, for use with clang: - NO_WERROR.clang (disables -Werror) - NO_WCAST_ALIGN.clang (disables -Wcast-align) - NO_WFORMAT.clang (disables -Wformat and friends) - CLANG_NO_IAS (disables integrated assembler) - CLANG_OPT_SMALL (adds flags for extra small size optimizations) As a side effect, this enables setting CC/CXX/CPP in src.conf instead of make.conf! For clang, use the following: CC=clang CXX=clang++ CPP=clang-cpp MFC after: 2 weeks
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
|
|
.PATH: ${SENDMAIL_DIR}/vacation
|
|
|
|
PROG= vacation
|
|
SRCS= vacation.c
|
|
CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include -I.
|
|
CFLAGS+=-DNEWDB -DNOT_SENDMAIL
|
|
CFLAGS+=-D_FFR_LISTDB -D_FFR_DEBUG
|
|
|
|
WARNS?= 2
|
|
|
|
# Unfortunately, clang gives warnings about sendmail code that cannot
|
|
# be turned off yet. Since this is contrib code, and we don't really
|
|
# care about the warnings, just make them non-fatal for now.
|
|
NO_WERROR.clang=
|
|
|
|
LIBSMDIR= ${.OBJDIR}/../../lib/libsm
|
|
LIBSM= ${LIBSMDIR}/libsm.a
|
|
|
|
LIBSMDBDIR= ${.OBJDIR}/../../lib/libsmdb
|
|
LIBSMDB= ${LIBSMDBDIR}/libsmdb.a
|
|
|
|
LIBSMUTILDIR= ${.OBJDIR}/../../lib/libsmutil
|
|
LIBSMUTIL= ${LIBSMUTILDIR}/libsmutil.a
|
|
|
|
DPADD= ${LIBSMDB} ${LIBSMUTIL} ${LIBSM}
|
|
LDADD= ${LIBSMDB} ${LIBSMUTIL} ${LIBSM}
|
|
|
|
SRCS+= sm_os.h
|
|
CLEANFILES+=sm_os.h
|
|
|
|
# User customizations to the sendmail build environment
|
|
CFLAGS+=${SENDMAIL_CFLAGS}
|
|
DPADD+=${SENDMAIL_DPADD}
|
|
LDADD+=${SENDMAIL_LDADD}
|
|
LDFLAGS+=${SENDMAIL_LDFLAGS}
|
|
|
|
sm_os.h:
|
|
ln -sf ${SENDMAIL_DIR}/include/sm/os/sm_os_freebsd.h sm_os.h
|
|
|
|
.include <bsd.prog.mk>
|