From: Andy Spencer Date: Sat, 7 Jun 2008 19:22:46 +0000 (+0000) Subject: hello world X-Git-Tag: v0.1~59 X-Git-Url: http://pileus.org/git/?p=aweather;a=commitdiff_plain;h=8206ff11b5450e27909f6867adbff8f6d051c315 hello world --- diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..af437a6 --- /dev/null +++ b/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = src diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..da6af3d --- /dev/null +++ b/configure.ac @@ -0,0 +1,9 @@ +AC_INIT([aweather], [0.1], [spenceal@rose-hulman.edu]) +AM_INIT_AUTOMAKE([-Wall -Werror foreign]) +AC_PROG_CC +AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_FILES([ + Makefile + src/Makefile +]) +AC_OUTPUT diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..711939f --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,2 @@ +bin_PROGRAMS = aweather +aweather_SOURCES = aweather.c diff --git a/src/aweather.c b/src/aweather.c new file mode 100644 index 0000000..76fc2e7 --- /dev/null +++ b/src/aweather.c @@ -0,0 +1,8 @@ +#include +#include + +int main(int argc, char **argv) +{ + puts("Hello World"); + return 0; +}