From 2b1f8c3363ef667bc20f33bbb5a856a35f2591ba Mon Sep 17 00:00:00 2001 From: Feffernoose Date: Mon, 30 Sep 2013 20:20:45 -0400 Subject: Started automake stuff --- .gitignore | 20 ++++++++++++++++++++ Makefile.am | 5 +++++ configure.ac | 7 +++++++ main.cpp | 6 ++++++ 4 files changed, 38 insertions(+) create mode 100644 Makefile.am create mode 100644 configure.ac create mode 100644 main.cpp diff --git a/.gitignore b/.gitignore index 620d3dc..024e725 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,23 @@ *.lai *.la *.a + +# Mac stuff +.DS_Store + +# Automake stuff +Makefile.in +aclocal.m4 +autom4te.cache +configure +.deps +config.log +config.status +missing +install-sh +depcomp +Makefile + +# Actual binary +rawr-ebooks +rawr-ebooks.exe diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..127042a --- /dev/null +++ b/Makefile.am @@ -0,0 +1,5 @@ +AUTOMAKE_OPTIONS = subdir-objects +ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} + +bin_PROGRAMS = rawr-ebooks +rawr_ebooks_SOURCES = main.cpp \ No newline at end of file diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..c1c50bf --- /dev/null +++ b/configure.ac @@ -0,0 +1,7 @@ +AC_INIT(rawr-ebooks, version-1.0) +AC_PREREQ([2.59]) +AM_INIT_AUTOMAKE([1.10 no-define foreign]) +AC_PROG_CXX +AC_CONFIG_FILES([Makefile]) + +AC_OUTPUT diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..8185573 --- /dev/null +++ b/main.cpp @@ -0,0 +1,6 @@ +#include + +int main(int argc, char** args) +{ + return 0; +} \ No newline at end of file -- cgit 1.4.1