From 0b1cc2ffd2312cf83a5d8ab21881932610623a8d Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Fri, 8 May 2009 14:48:44 -0700 Subject: [PATCH] Add directory for AT chat library --- Makefile.am | 2 +- configure.ac | 6 +++++- gatchat/Makefile.am | 8 ++++++++ 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 gatchat/Makefile.am diff --git a/Makefile.am b/Makefile.am index 31665787..8e559bd5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ -SUBDIRS = gdbus include plugins src client tools scripts test doc +SUBDIRS = gdbus gatchat include plugins src client tools scripts test doc pkgconfigdir = $(libdir)/pkgconfig diff --git a/configure.ac b/configure.ac index 98a02bfd..9fb15f1b 100644 --- a/configure.ac +++ b/configure.ac @@ -247,6 +247,9 @@ AC_SUBST(DBUS_DATADIR) AC_SUBST([GDBUS_CFLAGS], ['$(DBUS_CFLAGS) -I$(top_srcdir)/gdbus']) AC_SUBST([GDBUS_LIBS], ['$(top_builddir)/gdbus/libgdbus.la $(DBUS_LIBS)']) +AC_SUBST([GATCHAT_CFLAGS], ['-I$(top_srcdir)/gatchat']) +AC_SUBST([GATCHAT_LIBS], ['$(top_builddir)/gatchat/libgatchat.la']) + AC_ARG_ENABLE(polkit, AC_HELP_STRING([--enable-polkit], [enable PolicyKit support]), [enable_polkit=${enableval}]) if (test "${enable_polkit}" = "yes"); then @@ -287,7 +290,8 @@ AM_CONDITIONAL(DATAFILES, test "${enable_datafiles}" != "no") SHAVE_INIT -AC_OUTPUT(Makefile gdbus/Makefile include/Makefile include/version.h +AC_OUTPUT(Makefile gdbus/Makefile gatchat/Makefile + include/Makefile include/version.h src/Makefile src/connman.service scripts/connman scripts/Makefile plugins/Makefile client/Makefile diff --git a/gatchat/Makefile.am b/gatchat/Makefile.am new file mode 100644 index 00000000..56c17421 --- /dev/null +++ b/gatchat/Makefile.am @@ -0,0 +1,8 @@ + +noinst_LTLIBRARIES = libgatchat.la + +libgatchat_la_SOURCES = + +AM_CFLAGS = @GLIB_CFLAGS@ + +MAINTAINERCLEANFILES = Makefile.in -- 2.34.1