From: Tollef Fog Heen Date: Sun, 28 Dec 2008 19:42:49 +0000 (+0100) Subject: Add initial build system X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09ba6f05589b25ce0f03ecf11d4aa4f281ef17d7;p=yubiyubo Add initial build system --- 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..64bc08b --- /dev/null +++ b/configure.ac @@ -0,0 +1,10 @@ + +AC_INIT([yubiyubo], 0.1) +AC_CONFIG_SRCDIR(src/yubiyubo.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..de04696 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,9 @@ + +bin_PROGRAMS = yubiyubo + +yubiyubo_SOURCES = \ + ykdef.h \ + crc13239.h \ + crc13239.c \ + yubiyubo.c +