diff options
author | Feffernoose <fefferburbia@gmail.com> | 2013-09-30 20:20:45 -0400 |
---|---|---|
committer | Feffernoose <fefferburbia@gmail.com> | 2013-09-30 20:20:45 -0400 |
commit | 2b1f8c3363ef667bc20f33bbb5a856a35f2591ba (patch) | |
tree | 2a14698dfece64466ea728c322aec14d106b2e60 | |
parent | 4535c8b170f77d91eb612d7e7ddf01bf065b56c2 (diff) | |
download | rawr-ebooks-2b1f8c3363ef667bc20f33bbb5a856a35f2591ba.tar.gz rawr-ebooks-2b1f8c3363ef667bc20f33bbb5a856a35f2591ba.tar.bz2 rawr-ebooks-2b1f8c3363ef667bc20f33bbb5a856a35f2591ba.zip |
Started automake stuff
-rw-r--r-- | .gitignore | 20 | ||||
-rw-r--r-- | Makefile.am | 5 | ||||
-rw-r--r-- | configure.ac | 7 | ||||
-rw-r--r-- | main.cpp | 6 |
4 files changed, 38 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 620d3dc..024e725 100644 --- a/.gitignore +++ b/.gitignore | |||
@@ -11,3 +11,23 @@ | |||
11 | *.lai | 11 | *.lai |
12 | *.la | 12 | *.la |
13 | *.a | 13 | *.a |
14 | |||
15 | # Mac stuff | ||
16 | .DS_Store | ||
17 | |||
18 | # Automake stuff | ||
19 | Makefile.in | ||
20 | aclocal.m4 | ||
21 | autom4te.cache | ||
22 | configure | ||
23 | .deps | ||
24 | config.log | ||
25 | config.status | ||
26 | missing | ||
27 | install-sh | ||
28 | depcomp | ||
29 | Makefile | ||
30 | |||
31 | # Actual binary | ||
32 | rawr-ebooks | ||
33 | 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 @@ | |||
1 | AUTOMAKE_OPTIONS = subdir-objects | ||
2 | ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} | ||
3 | |||
4 | bin_PROGRAMS = rawr-ebooks | ||
5 | 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 @@ | |||
1 | AC_INIT(rawr-ebooks, version-1.0) | ||
2 | AC_PREREQ([2.59]) | ||
3 | AM_INIT_AUTOMAKE([1.10 no-define foreign]) | ||
4 | AC_PROG_CXX | ||
5 | AC_CONFIG_FILES([Makefile]) | ||
6 | |||
7 | 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 @@ | |||
1 | #include <cstdio> | ||
2 | |||
3 | int main(int argc, char** args) | ||
4 | { | ||
5 | return 0; | ||
6 | } \ No newline at end of file | ||