Lionel Sambuc 0a6a1f1d05 NetBSD re-synchronization of the source tree
This brings our tree to NetBSD 7.0, as found on -current on the
10-10-2015.

This updates:
 - LLVM to 3.6.1
 - GCC to GCC 5.1
 - Replace minix/commands/zdump with usr.bin/zdump
 - external/bsd/libelf has moved to /external/bsd/elftoolchain/
 - Import ctwm
 - Drop sprintf from libminc

Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
2016-01-13 20:32:14 +01:00

52 lines
941 B
Makefile

# $NetBSD: Makefile,v 1.7 2014/04/06 19:28:59 christos Exp $
NOMAN= # defined
.include <bsd.own.mk>
WARNS= 4
CPPFLAGS+= -D_FORTIFY_SOURCE=2
COPTS.h_raw.c= -fstack-protector-all -Wstack-protector
COPTS.h_raw.c+= ${${ACTIVE_CC} == "gcc":? --param ssp-buffer-size=1 :}
COPTS.h_raw.c+= ${${ACTIVE_CC} == "clang":? --param ssp-buffer-size=1 :}
# Bootstrap hack
.ifmake !clean && !obj && !cleandir
.BEGIN:
${AR} cr libssp_nonshared.a
.endif
CLEANFILES+= libssp_nonshared.a
LDFLAGS+= -L.
TESTSDIR= ${TESTSBASE}/lib/libc/ssp
TESTS_SH+= t_ssp
BINDIR= ${TESTSDIR}
PROGS= h_fgets
PROGS+= h_gets
PROGS+= h_getcwd
PROGS+= h_memcpy
PROGS+= h_memmove
PROGS+= h_memset
PROGS+= h_raw
PROGS+= h_read
PROGS+= h_readlink
PROGS+= h_snprintf
PROGS+= h_sprintf
PROGS+= h_stpcpy
PROGS+= h_stpncpy
PROGS+= h_strcat
PROGS+= h_strcpy
PROGS+= h_strncat
PROGS+= h_strncpy
PROGS+= h_vsnprintf
PROGS+= h_vsprintf
.include <bsd.test.mk>