summaryrefslogtreecommitdiff
path: root/src/lib/Makefile.am
blob: aec9fa6340067f455a666d3a068de15c3c112a51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
AM_CPPFLAGS = \
	-D__BUILDING_CVC4LIB \
	-I@builddir@/.. -I@srcdir@/../include -I@srcdir@/..
AM_CFLAGS = -Wall -Wno-unknown-pragmas $(FLAG_VISIBILITY_HIDDEN)
AM_CXXFLAGS = -Wall -Wno-unknown-pragmas $(FLAG_VISIBILITY_HIDDEN)
# This is a workaround for now to fix some warnings related to unsupported
# compiler flags since we are compiling C code here. CXXFLAGS is set via
# configure, however, we should actually set AM_CXXFLAGS.
CXXFLAGS = $(AM_CXXFLAGS)

noinst_LTLIBRARIES = libreplacements.la

libreplacements_la_SOURCES =

libreplacements_la_LIBADD = \
	$(LTLIBOBJS)

EXTRA_DIST = \
	replacements.h \
	clock_gettime.c \
	clock_gettime.h \
	strtok_r.c \
	strtok_r.h \
	ffs.c \
	ffs.h
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback