From 5a7eab3c207149d6be3b27e05ed07553aae5aaf8 Mon Sep 17 00:00:00 2001 From: Tollef Fog Heen Date: Fri, 26 Dec 2008 16:33:06 +0100 Subject: [PATCH 1/1] Add initial framework --- Makefile.am | 2 ++ configure.ac | 10 ++++++++++ src/Makefile.am | 4 ++++ 3 files changed, 16 insertions(+) create mode 100644 Makefile.am create mode 100644 configure.ac create mode 100644 src/Makefile.am diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..2cad62a --- /dev/null +++ b/Makefile.am @@ -0,0 +1,2 @@ + +SUBDIRS = src diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..ff0350c --- /dev/null +++ b/configure.ac @@ -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 index 0000000..20b82e2 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,4 @@ + +bin_PROGRAMS = voouiri +voouiri_SOURCES = main.c + -- 2.39.5