From b77f2fee1e007ba0d031ab667371c1b18e169861 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 12 May 2009 21:41:32 -0700 Subject: [PATCH] Use $(top_srcdir) for unit tests compilation --- unit/Makefile.am | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/unit/Makefile.am b/unit/Makefile.am index 06b15086..a1c5510a 100644 --- a/unit/Makefile.am +++ b/unit/Makefile.am @@ -1,12 +1,12 @@ noinst_PROGRAMS = test-common test-util test-sms -test_common_SOURCES = test-common.c $(top_builddir)/src/common.c +test_common_SOURCES = test-common.c $(top_srcdir)/src/common.c -test_util_SOURCES = test-util.c $(top_builddir)/src/util.c +test_util_SOURCES = test-util.c $(top_srcdir)/src/util.c -test_sms_SOURCES = test-sms.c $(top_builddir)/src/util.c \ - $(top_builddir)/src/smsutil.c +test_sms_SOURCES = test-sms.c $(top_srcdir)/src/util.c \ + $(top_srcdir)/src/smsutil.c LDADD = @GLIB_LIBS@ @GTHREAD_LIBS@