Make various adjustments necessary to enable "make dist" to build a BIND source tarball whose contents are complete enough to build binaries, run unit & system tests, and generate documentation on Unix systems. Known outstanding issues: - "make distcheck" does not work yet. - Tests do not work for out-of-tree source-tarball-based builds. - Source tarballs are not complete enough for building on Windows. All of the above will be addressed in due course.
45 lines
786 B
Makefile
45 lines
786 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
lib_LTLIBRARIES = libisccc.la
|
|
|
|
libisccc_ladir = $(includedir)/isccc
|
|
libisccc_la_HEADERS = \
|
|
include/isccc/alist.h \
|
|
include/isccc/base64.h \
|
|
include/isccc/cc.h \
|
|
include/isccc/ccmsg.h \
|
|
include/isccc/events.h \
|
|
include/isccc/result.h \
|
|
include/isccc/sexpr.h \
|
|
include/isccc/symtab.h \
|
|
include/isccc/symtype.h \
|
|
include/isccc/types.h \
|
|
include/isccc/util.h
|
|
|
|
libisccc_la_SOURCES = \
|
|
$(libisccc_la_HEADERS) \
|
|
alist.c \
|
|
base64.c \
|
|
cc.c \
|
|
ccmsg.c \
|
|
result.c \
|
|
sexpr.c \
|
|
symtab.c
|
|
|
|
libisccc_la_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBISCCC_CFLAGS)
|
|
|
|
libisccc_la_LIBADD = \
|
|
$(LIBISC_LIBS)
|
|
|
|
libisccc_la_LDFLAGS = \
|
|
$(libisccc_VERSION_INFO)
|
|
|
|
if HAVE_CMOCKA
|
|
SUBDIRS = tests
|
|
endif
|
|
|
|
EXTRA_DIST = api
|