From: Tollef Fog Heen Date: Fri, 26 Dec 2008 15:33:06 +0000 (+0100) Subject: Add initial framework X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a7eab3c207149d6be3b27e05ed07553aae5aaf8;p=voouiri Add initial framework --- 5a7eab3c207149d6be3b27e05ed07553aae5aaf8 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 +