Files
bgpq4/compat/Makefile.am
2021-08-17 12:52:14 +00:00

16 lines
375 B
Makefile

AM_CPPFLAGS = -I$(top_srcdir)/include
noinst_LTLIBRARIES = libcompat.la libcompatnoopt.la
# compatibility functions that need to be built without optimizations
libcompatnoopt_la_CFLAGS = -O0
libcompatnoopt_la_SOURCES =
# other compatibility functions
libcompat_la_SOURCES =
libcompat_la_LIBADD = $(PLATFORM_LDADD)
if !HAVE_STRLCPY
libcompat_la_SOURCES += strlcpy.c
endif