]> err.no Git - yubiyubo/commitdiff
Add initial build system
authorTollef Fog Heen <tfheen@err.no>
Sun, 28 Dec 2008 19:42:49 +0000 (20:42 +0100)
committerTollef Fog Heen <tfheen@err.no>
Sun, 28 Dec 2008 19:42:49 +0000 (20:42 +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..64bc08b
--- /dev/null
@@ -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 (file)
index 0000000..de04696
--- /dev/null
@@ -0,0 +1,9 @@
+
+bin_PROGRAMS = yubiyubo
+
+yubiyubo_SOURCES = \
+       ykdef.h \
+       crc13239.h \
+       crc13239.c \
+       yubiyubo.c
+