24 lines
615 B
Makefile
24 lines
615 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)
|
|
|
|
if USE_MINGW
|
|
EXTRA_libfko_util_a_SOURCES = ../win32/getlogin.c ../win32/getlogin.h
|
|
libfko_util_a_LDFLAGS = -lwsock32 -lws2_32
|
|
endif
|
|
|
|
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
|