summaryrefslogtreecommitdiff
path: root/tests/Makefile.am
blob: ac694dcd1d5ef7bd1f629f9e6b529b9f5c65406a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
check_PROGRAMS = test_tables test_parse_url
TESTS = $(check_PROGRAMS)
EXTRA_DIST = test_tables.expected

AM_CFLAGS = -I$(top_srcdir)/librabbitmq

if GCC
# Because we want to build under Microsoft's C compiler (for which
# there is apparently no demand for C99 support), it's a good idea
# to have gcc tell us when we stray from the old standard.
AM_CFLAGS += -ansi -pedantic
endif

if USE_MSINTTYPES
AM_CFLAGS += -I$(top_srcdir)/msinttypes
endif

AM_LDFLAGS = $(top_builddir)/librabbitmq/librabbitmq.la