summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorHarald Welte2010-02-20 21:09:24 +0100
committerHarald Welte2010-02-20 21:09:24 +0100
commit3cae0398eaef6045de883849a236c38d1767cb41 (patch)
treee206fbaec0bb64687b98fe4db6d97ac3386be354 /tests
parentupdate gitignore file (diff)
downloadlibosmocore-3cae0398eaef6045de883849a236c38d1767cb41.tar.gz
libosmocore-3cae0398eaef6045de883849a236c38d1767cb41.tar.xz
libosmocore-3cae0398eaef6045de883849a236c38d1767cb41.zip
add missing automake / autoconf files
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am1
-rw-r--r--tests/sms/Makefile.am5
-rw-r--r--tests/timer/Makefile.am6
3 files changed, 12 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
new file mode 100644
index 0000000..56e8b6f
--- /dev/null
+++ b/tests/Makefile.am
@@ -0,0 +1 @@
+SUBDIRS = timer sms
diff --git a/tests/sms/Makefile.am b/tests/sms/Makefile.am
new file mode 100644
index 0000000..a8f1ff6
--- /dev/null
+++ b/tests/sms/Makefile.am
@@ -0,0 +1,5 @@
+INCLUDES = $(all_includes) -I$(top_srcdir)/include
+noinst_PROGRAMS = sms_test
+
+sms_test_SOURCES = sms_test.c
+sms_test_LDADD = $(top_builddir)/src/libosmocore.la
diff --git a/tests/timer/Makefile.am b/tests/timer/Makefile.am
new file mode 100644
index 0000000..d3decf5
--- /dev/null
+++ b/tests/timer/Makefile.am
@@ -0,0 +1,6 @@
+INCLUDES = $(all_includes) -I$(top_srcdir)/include
+noinst_PROGRAMS = timer_test
+
+timer_test_SOURCES = timer_test.c
+timer_test_LDADD = $(top_builddir)/src/libosmocore.la
+