blob: bb7a32325d670ecf88c5f846fa4085a7c949d3ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
noinst_PROGRAMS = \
test-01 \
test-02 \
test-03 \
test-04 \
test-05 \
test-06
INCLUDES = -I$(top_srcdir)
LDADD = $(top_builddir)/json-glib/libjson-glib-1.0.la
AM_CFLAGS = $(JSON_CFLAGS)
AM_LDFLAGS = $(JSON_LIBS)
test_01_SOURCES = test-01.c
test_02_SOURCES = test-02.c
test_03_SOURCES = test-03.c
test_04_SOURCES = test-04.c
test_05_SOURCES = test-05.c
test_06_SOURCES = test-06.c
|