diff options
author | HyungKyu Song <hk76.song@samsung.com> | 2013-02-16 00:14:05 +0900 |
---|---|---|
committer | HyungKyu Song <hk76.song@samsung.com> | 2013-02-16 00:14:05 +0900 |
commit | 9795c41fdd70085d479d7b7c64d357d6d6b31a4f (patch) | |
tree | 78e2b247396802ecf0dbdd1e736bff4120efaf28 /test/Makefile.am | |
parent | 10c786e725207327fb35035100b391d073da6aeb (diff) | |
download | audio-session-manager-tizen_2.0.tar.gz audio-session-manager-tizen_2.0.tar.bz2 audio-session-manager-tizen_2.0.zip |
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) + + |