19 lines
482 B
Makefile
19 lines
482 B
Makefile
AUTOMAKE_OPTIONS = subdir-objects
|
|
|
|
noinst_LIBRARIES = libfko_util.a
|
|
|
|
libfko_util_source_files = strlcpy.c strlcat.c fko_util.c fko_util.h
|
|
|
|
if WANT_C_UNIT_TESTS
|
|
libfko_util_source_files += cunit_common.c cunit_common.h
|
|
endif
|
|
|
|
libfko_util_a_SOURCES = $(libfko_util_source_files)
|
|
|
|
AM_CPPFLAGS = $(GPGME_CFLAGS) -I $(top_srcdir)/common -I $(top_srcdir)/lib
|
|
|
|
EXTRA_DIST = common.h netinet_common.h cunit_common.h cunit_common.c
|
|
|
|
clean-local:
|
|
rm -f *.gcno *.gcda
|