diff options
Diffstat (limited to 'test/Makefile.am')
-rw-r--r-- | test/Makefile.am | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/Makefile.am b/test/Makefile.am new file mode 100644 index 0000000..df09a2e --- /dev/null +++ b/test/Makefile.am @@ -0,0 +1,17 @@ +bin_PROGRAMS = asm_testsuite + +asm_testsuite_SOURCES = asm_testsuite.c + +asm_testsuite_CFLAGS = -I$(srcdir)/../include \ + $(AUDIOSESSIONMGR_CFLAGS) \ + $(DLOG_CFLAGS) \ + $(VCONF_CFLAGS) + +asm_testsuite_DEPENDENCIES = $(srcdir)/../.libs/libaudio-session-mgr.la + +asm_testsuite_LDADD = $(AUDIOSESSIONMGR_LIBS) \ + $(srcdir)/../.libs/libaudio-session-mgr.la \ + $(DLOG_LIBS) \ + $(VCONF_LIBS) + + |