mirror of
https://github.com/bgp/bgpq4
synced 2025-02-28 08:53:11 +00:00
14 lines
303 B
Makefile
14 lines
303 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 =
|
|
|
|
libcompat_la_SOURCES =
|
|
|
|
if !HAVE_STRLCPY
|
|
libcompat_la_SOURCES += strlcpy.c
|
|
endif
|