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
26 lines
723 B
Makefile
26 lines
723 B
Makefile
#
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
lib_LTLIBRARIES = libblacklist.la
|
|
include_HEADERS = blacklist.h
|
|
|
|
bin_PROGRAMS = blacklistd blacklistctl srvtest cltest
|
|
|
|
VPATH = ../bin:../lib:../test
|
|
|
|
AM_CPPFLAGS = -I../include -DDOT="."
|
|
AM_CFLAGS = @WARNINGS@
|
|
|
|
libblacklist_la_SOURCES = bl.c blacklist.c
|
|
libblacklist_la_LDFLAGS = -no-undefined -version-info 0:0:0
|
|
libblacklist_la_LIBADD = $(LTLIBOBJS)
|
|
|
|
SRCS = internal.c support.c run.c conf.c state.c
|
|
blacklistd_SOURCES = blacklistd.c ${SRCS}
|
|
blacklistd_LDADD = libblacklist.la
|
|
blacklistctl_SOURCES = blacklistctl.c ${SRCS}
|
|
blacklistctl_LDADD = libblacklist.la
|
|
srvtest_SOURCES = srvtest.c ${SRCS}
|
|
srvtest_LDADD = libblacklist.la
|
|
cltest_SOURCES = cltest.c ${SRCS}
|
|
cltest_LDADD = libblacklist.la
|