]> err.no Git - voouiri/commitdiff
Add initial framework
authorTollef Fog Heen <tfheen@err.no>
Fri, 26 Dec 2008 15:33:06 +0000 (16:33 +0100)
committerTollef Fog Heen <tfheen@err.no>
Fri, 26 Dec 2008 15:33:06 +0000 (16:33 +0100)
Makefile.am [new file with mode: 0644]
configure.ac [new file with mode: 0644]
src/Makefile.am [new file with mode: 0644]

diff --git a/Makefile.am b/Makefile.am
new file mode 100644 (file)
index 0000000..2cad62a
--- /dev/null
@@ -0,0 +1,2 @@
+
+SUBDIRS = src
diff --git a/configure.ac b/configure.ac
new file mode 100644 (file)
index 0000000..ff0350c
--- /dev/null
@@ -0,0 +1,10 @@
+
+AC_INIT([voouiri], 0.1)
+AC_CONFIG_SRCDIR(src/main.c)
+AM_INIT_AUTOMAKE([1.9 foreign])
+AM_CONFIG_HEADER(config.h)
+# AM_MAINTAINER_MODE
+
+AC_PROG_CC
+
+AC_OUTPUT([Makefile src/Makefile])
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644 (file)
index 0000000..20b82e2
--- /dev/null
@@ -0,0 +1,4 @@
+
+bin_PROGRAMS = voouiri
+voouiri_SOURCES = main.c
+