aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am9
-rw-r--r--configure.ac3
-rw-r--r--platform/Makefile.am1
-rw-r--r--platform/linux-generic/Makefile.am2
4 files changed, 10 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am
index b9b251704..2c8a9d643 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,7 +1,14 @@
ACLOCAL_AMFLAGS=-I m4
AUTOMAKE_OPTIONS = foreign
-SUBDIRS = doc platform example test helper scripts
+#@with_platform@ works alone in subdir but not as part of a path???
+SUBDIRS = @platform_with_platform@ \
+ test \
+ @platform_with_platform_test@ \
+ helper \
+ doc \
+ example \
+ scripts
include $(top_srcdir)/aminclude.am
diff --git a/configure.ac b/configure.ac
index 5f1cc6670..533bd7846 100644
--- a/configure.ac
+++ b/configure.ac
@@ -76,6 +76,8 @@ AC_ARG_WITH([platform],
])
AC_SUBST([with_platform])
+AC_SUBST([platform_with_platform], ["platform/${with_platform}"])
+AC_SUBST([platform_with_platform_test], ["platform/${with_platform}/test"])
if test "${with_platform}" == "linux-generic";
then
@@ -294,7 +296,6 @@ AC_CONFIG_FILES([Makefile
helper/Makefile
helper/test/Makefile
pkgconfig/libodp.pc
- platform/Makefile
platform/linux-generic/Makefile
scripts/Makefile
test/Makefile
diff --git a/platform/Makefile.am b/platform/Makefile.am
deleted file mode 100644
index e618747b5..000000000
--- a/platform/Makefile.am
+++ /dev/null
@@ -1 +0,0 @@
-SUBDIRS = @with_platform@
diff --git a/platform/linux-generic/Makefile.am b/platform/linux-generic/Makefile.am
index 66f0474f7..b8f93c709 100644
--- a/platform/linux-generic/Makefile.am
+++ b/platform/linux-generic/Makefile.am
@@ -5,8 +5,6 @@ AM_CFLAGS += -I$(srcdir)/include
AM_CFLAGS += -I$(top_srcdir)/include
AM_CFLAGS += -I$(top_srcdir)/helper/include
-SUBDIRS = test
-
include_HEADERS = \
$(top_srcdir)/include/odp.h