37 lines
677 B
Makefile
37 lines
677 B
Makefile
|
|
include $(top_srcdir)/Makefile.am.common
|
|
|
|
lib_LTLIBRARIES = libheimbase.la
|
|
check_PROGRAMS = test_base
|
|
|
|
libheimbase_la_LDFLAGS = -version-info 1:0:0
|
|
libheimbase_la_CPPFLAGS = $(ROKEN_RENAME)
|
|
|
|
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 \
|
|
roken_rename.h
|
|
|
|
if do_roken_rename
|
|
nodist_libheimbase_la_SOURCES = snprintf.c
|
|
endif
|
|
|
|
snprintf.c:
|
|
$(LN_S) $(top_srcdir)/lib/roken/snprintf.c .
|
|
|
|
test_base_LDADD = $(LIB_heimbase)
|