File: Makefile.am

package info (click to toggle)
evemu 2.7.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,260 kB
  • sloc: sh: 4,331; ansic: 1,718; python: 1,186; makefile: 125; cpp: 11
file content (22 lines) | stat: -rw-r--r-- 681 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
if BUILD_TESTS
noinst_PROGRAMS = test-c-compile test-cxx-compile test-evemu-create
TESTS = $(noinst_PROGRAMS)

AM_CPPFLAGS = -I$(top_srcdir)/src/

test_c_compile_SOURCES = test-c-compile.c
test_c_compile_LDADD = $(top_builddir)/src/libevemu.la

test_cxx_compile_SOURCES = test-cxx-compile.cpp
test_cxx_compile_LDADD = $(top_builddir)/src/libevemu.la

test_evemu_create_SOURCES = test-evemu-create.c
test_evemu_create_LDADD = \
                         $(top_builddir)/src/libevemu.la \
                         $(LIBEVDEV_LIBS) \
                         $(NULL)
test_evemu_create_LDFLAGS = -no-install
test_evemu_create_CFLAGS = $(LIBEVDEV_CFLAGS)
endif

CLEANFILES = evemu.tmp.*