Make entire project compiling.
authorRafał Długołęcki <rafal@dlugolecki.net.pl>
Sat, 21 Mar 2015 15:04:33 +0000 (16:04 +0100)
committerRafał Długołęcki <rafal@dlugolecki.net.pl>
Sat, 21 Mar 2015 15:04:33 +0000 (16:04 +0100)
Makefile.am
autogen.sh [new file with mode: 0755]
src/main.cpp

index 2d61fca186ae3fadf33051256dd14460cd726688..45fb87235fc17ba94e299a37794894c37f4f847c 100644 (file)
@@ -31,9 +31,8 @@ bin_genetic_SOURCES = \
 
 bin_genetic_CPPFLAGS = \
     $(bin_genetic_CFLAGS) \
-    -Wall -pedantic -Wextra \
-    @GEDCOM_CFLAGS@ \
     -I$(top_srcdir)/src \
+    -Wall -pedantic -Wextra \
     -Wl,--export-dynamic
 
 bin_genetic_LDADD = \
diff --git a/autogen.sh b/autogen.sh
new file mode 100755 (executable)
index 0000000..fcd4df5
--- /dev/null
@@ -0,0 +1,3 @@
+#! /bin/sh
+
+autoreconf --force --install
index 8d1c8b69c3fce7bea45c73efd06983e3c419a92f..c2bbf58abf71b13eb3dd8bbd22c853bef455f018 100644 (file)
@@ -1 +1,9 @@
+#include <iostream>
+
+using namespace std;
+
+int main() {
+    cout << "Hello World" << endl;
+
+    return 0;
+}