aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorSimon Busch <morphis@gravedo.de>2011-08-24 17:45:30 +0200
committerSimon Busch <morphis@gravedo.de>2011-08-24 17:45:30 +0200
commit5a5485e31f7ae2ce400a405e570592d7a416c251 (patch)
tree5c9b995e28cb6f9e3964f81d34ba1bb24c6ba500 /configure.ac
parente3465cd02b840787d6f58929e9c7fd71a09c0eae (diff)
downloadexternal_libsamsung-ipc-5a5485e31f7ae2ce400a405e570592d7a416c251.zip
external_libsamsung-ipc-5a5485e31f7ae2ce400a405e570592d7a416c251.tar.gz
external_libsamsung-ipc-5a5485e31f7ae2ce400a405e570592d7a416c251.tar.bz2
Basic automake environment for building the library
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac29
1 files changed, 29 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..555fef0
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,29 @@
+AC_INIT([libsamsung-ipc], [0.1.0], [smartphones-userland@linuxtogo.org], [libsamsung-ipc])
+AC_CONFIG_SRCDIR([Makefile.am])
+AC_CONFIG_HEADERS(config.h)
+AM_INIT_AUTOMAKE([dist-bzip2])
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
+
+AC_PROG_CC
+AM_PROG_CC_C_O
+AC_GNU_SOURCE
+AC_DISABLE_STATIC
+AC_PROG_LIBTOOL
+
+AC_SUBST(CFLAGS)
+AC_SUBST(CPPFLAGS)
+AC_SUBST(LDFLAGS)
+
+#------------------------------------------------------------------------------
+# pkg-config
+
+PKG_PROG_PKG_CONFIG
+
+#------------------------------------------------------------------------------
+
+AC_CONFIG_FILES([
+ Makefile
+ include/Makefile
+ samsung-ipc/Makefile
+])
+AC_OUTPUT