~alexlauni/libunity-webapps/multiple-messaging-menu-accounts

« back to all changes in this revision

Viewing changes to tests/repository/application-manifest/Makefile.am

MergeĀ lp:~robertcarr/libunity-webapps/package-support

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DBUS_RUNNER=dbus-test-runner --max-wait=0
 
2
 
 
3
AM_CPPFLAGS = \
 
4
        $(UNITY_WEBAPPS_CFLAGS) \
 
5
        $(UNITY_WEBAPPS_DAEMON_CFLAGS) \
 
6
        -DUNITY_WEBAPPS_ENABLE_DEBUG \
 
7
        -I$(top_srcdir)/src/ \
 
8
        -I$(top_srcdir)/src/context-daemon/util \
 
9
        -I$(top_srcdir)/src/libunity-webapps-repository/ \
 
10
        -DUNITY_WEBAPPS_TEST_BUILD \
 
11
        $(UNITY_WEBAPPS_COVERAGE_CFLAGS)
 
12
 
 
13
REAL_TESTS = \
 
14
        test-application-manifest
 
15
RUNNER_TESTS =
 
16
 
 
17
noinst_PROGRAMS = \
 
18
        $(REAL_TESTS) 
 
19
 
 
20
test_application_manifest_SOURCES = \
 
21
        test-application-manifest.c 
 
22
 
 
23
 
 
24
test_application_manifest_LDADD = \
 
25
        $(UNITY_WEBAPPS_LIBS) \
 
26
        $(UNITY_WEBAPPS_DAEMON_LIBS) \
 
27
        $(UNITY_WEBAPPS_COVERAGE_LDFLAGS) \
 
28
        $(top_builddir)/src/libunity-webapps-repository/libunity-webapps-repository.la
 
29
 
 
30
 
 
31
lcov:
 
32
        lcov -t 'Profile report' -o uwa.info -c -d .
 
33
        genhtml -o uwa uwa.info
 
34
 
 
35
TESTS = $(REAL_TESTS) $(RUNNER_TESTS)
 
36
 
 
37
CLEANFILES = $(RUNNER_TESTS) $(REAL_TESTS)