
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
32 lines
582 B
Makefile
32 lines
582 B
Makefile
|
|
include $(top_srcdir)/Makefile.am.common
|
|
|
|
lib_LTLIBRARIES = libheimbase.la
|
|
check_PROGRAMS = test_base
|
|
|
|
libheimbase_la_LDFLAGS = -version-info 1:0:0
|
|
|
|
if versionscript
|
|
libheimbase_la_LDFLAGS += $(LDFLAGS_VERSION_SCRIPT)$(srcdir)/version-script.map
|
|
endif
|
|
|
|
include_HEADERS = heimbase.h
|
|
|
|
dist_libheimbase_la_SOURCES = \
|
|
array.c \
|
|
baselocl.h \
|
|
bool.c \
|
|
dict.c \
|
|
heimbase.c \
|
|
heimbasepriv.h \
|
|
heimqueue.h \
|
|
null.c \
|
|
number.c \
|
|
string.c
|
|
|
|
libheimbase_la_DEPENDENCIES = version-script.map
|
|
|
|
test_base_LDADD = $(LIB_heimbase)
|
|
|
|
EXTRA_DIST = NTMakefile version-script.map
|