summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2008-12-15 04:05:18 +0100
committerMarcel Holtmann <marcel@holtmann.org>2008-12-15 04:05:18 +0100
commit273799ecfabe3d3a696dda38d8a400fac08d12d0 (patch)
tree715d6e45cb8b79f0f3277a0959a48a526388f837
parent8a714e90ed686264d17e4eddd343c91075d10f27 (diff)
downloadconnman-273799ecfabe3d3a696dda38d8a400fac08d12d0.tar.gz
connman-273799ecfabe3d3a696dda38d8a400fac08d12d0.tar.bz2
connman-273799ecfabe3d3a696dda38d8a400fac08d12d0.zip
Add directory for client application
-rw-r--r--Makefile.am2
-rw-r--r--client/Makefile.am2
-rw-r--r--configure.ac4
3 files changed, 5 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index 0b875b7d..78c98b87 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,5 +1,5 @@
-SUBDIRS = gdbus include src plugins scripts test doc
+SUBDIRS = gdbus include src plugins client scripts test doc
pkgconfigdir = $(libdir)/pkgconfig
diff --git a/client/Makefile.am b/client/Makefile.am
new file mode 100644
index 00000000..02742923
--- /dev/null
+++ b/client/Makefile.am
@@ -0,0 +1,2 @@
+
+MAINTAINERCLEANFILES = Makefile.in
diff --git a/configure.ac b/configure.ac
index 0a10c57b..c5a7a1de 100644
--- a/configure.ac
+++ b/configure.ac
@@ -89,5 +89,5 @@ AC_ARG_ENABLE(fake, AC_HELP_STRING([--enable-fake],
AM_CONDITIONAL(FAKE, test "${enable_fake}" = "yes")
AC_OUTPUT(Makefile gdbus/Makefile include/Makefile src/Makefile doc/Makefile
- test/Makefile plugins/Makefile scripts/Makefile scripts/connman
- src/connman.service doc/version.xml connman.pc)
+ test/Makefile plugins/Makefile client/Makefile scripts/Makefile
+ scripts/connman src/connman.service doc/version.xml connman.pc)