summaryrefslogtreecommitdiffstats
path: root/tests/Makefile.am
blob: 60de4e00e2eb2b8b8a913dfba612544a32a1c348 (plain) (blame)
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
26
27
28
29
30
31
32
33
# vim: set sw=8 ts=8 sts=8 noet:

NULL =

noinst_PROGRAMS = test-extract test-pref test-create test-ui

test_cflags = \
    $(DEPENDENCIES_CFLAGS)  \
    -I$(top_srcdir)     \
    $(AM_CFLAGS)        \
    $(NULL)

test_libs = \
    $(top_builddir)/gnome-autoar/libgnome-autoar.la \
    $(DEPENDENCIES_LIBS)    \
    $(NULL)


test_extract_SOURCES = test-extract.c
test_extract_CFLAGS = $(test_cflags)
test_extract_LDADD = $(test_libs)

test_pref_SOURCES = test-pref.c
test_pref_CFLAGS = $(test_cflags)
test_pref_LDADD = $(test_libs)

test_create_SOURCES = test-create.c
test_create_CFLAGS = $(test_cflags)
test_create_LDADD = $(test_libs)

test_ui_SOURCES = test-ui.c
test_ui_CFLAGS = $(test_cflags)
test_ui_LDADD = $(test_libs)