Preparations for automake build.
authorRafał Długołęcki <kontakt@dlugolecki.net.pl>
Mon, 1 Jul 2013 20:23:28 +0000 (22:23 +0200)
committerRafał Długołęcki <kontakt@dlugolecki.net.pl>
Mon, 1 Jul 2013 22:41:55 +0000 (00:41 +0200)
.gitignore
Makefile.am [new file with mode: 0644]
autogen.sh [new file with mode: 0755]
configure.ac [new file with mode: 0644]

index 1bf42aac953331318b0261f31eaeafac94ad840c..428570b784495334ab046228b577df65ddd1e2ea 100644 (file)
@@ -1 +1,2 @@
 Dir
+Makefile
diff --git a/Makefile.am b/Makefile.am
new file mode 100644 (file)
index 0000000..cfa500d
--- /dev/null
@@ -0,0 +1,14 @@
+AUTOMAKE_OPTIONS = gnu subdir-objects
+ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}
+
+bin_PROGRAMS = vlp
+
+vlp_SOURCES = dummy.c
+
+vlp_CPPFLAGS = \
+       $(vlp_CFLAGS)
+
+vlp_LDADD = \
+  $(vlp_LIBS)
+
+dist_noinst_SCRIPTS = autogen.sh
diff --git a/autogen.sh b/autogen.sh
new file mode 100755 (executable)
index 0000000..fe6532c
--- /dev/null
@@ -0,0 +1,7 @@
+#! /bin/sh
+
+#aclocal \
+#&& automake --add-missing \
+#&& autoconf
+
+autoreconf --force --install
diff --git a/configure.ac b/configure.ac
new file mode 100644 (file)
index 0000000..10e6db0
--- /dev/null
@@ -0,0 +1,12 @@
+AC_INIT([Virtual Loglan Processor], [2.6], [rafal@dlugolecki.net.pl], [vlp], [http://dlugolecki.net.pl/software/vlp/])
+AC_PREREQ([2.59])
+AM_INIT_AUTOMAKE([1.10 no-define])
+AC_CONFIG_HEADERS([config.h])
+AC_PROG_CC
+AC_PROG_CXX
+AM_PROG_CC_C_O
+AC_CONFIG_FILES([Makefile])
+
+#PKG_CHECK_MODULES([vlp], [gtk+-3.0 libxml-2.0])
+
+AC_OUTPUT