
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
23 lines
450 B
Makefile
23 lines
450 B
Makefile
# $NetBSD: Makefile,v 1.8 2014/01/19 22:09:34 apb Exp $
|
|
#
|
|
.include <bsd.own.mk>
|
|
|
|
ATFFILE= no
|
|
TESTSDIR= ${TESTSBASE}/lib/libcurses
|
|
TESTS_C+= director
|
|
|
|
PROG= director
|
|
NOMAN= "true"
|
|
#MAN= director.7
|
|
SRCS= testlang_parse.y testlang_conf.l director.c
|
|
|
|
YHEADER= 1
|
|
CPPFLAGS+= -I${.CURDIR} -I.
|
|
DPADD+= ${LIBL}
|
|
LDADD+= -ll -lutil -lc
|
|
|
|
COPTS.testlang_parse.c += -Wno-uninitialized
|
|
CWARNFLAGS.clang+= -Wno-format -Wno-conversion
|
|
|
|
.include <bsd.test.mk>
|