git repos / oastat

commit fb3aa478

sago007 · 2015-09-29 19:31
fb3aa478605d3a0553a0d820ab388f1341ab55c6 patch · browse files
parent 8970bab86bf96a046fbd5e4ab0e277dca7a9f62e

Incorrecy conditions in Makefile

Changed files

M src/Makefile before
diff --git a/src/Makefile b/src/Makefile index 8be81a1..960b3c1 100644 --- a/src/Makefile +++ b/src/Makefile
@@ -1,15 +1,15 @@
-#ifndef USEDBIXX
+ifndef USEDBIXX
USEDBIXX=0
-#endif
-#ifndef USECPPDB
+endif
+ifndef USECPPDB
USECPPDB=1
-#endif
-#ifndef PROGRAMNAME
+endif
+ifndef PROGRAMNAME
PROGRAMNAME=oastat
-#endif
-#ifdef CROSS
+endif
+ifdef CROSS
CXX=$(CROSS)g++
-#endif
+endif
BASE_LIBS=-lgcrypt -lboost_program_options -lgpg-error
BASE_CFLAGS=-c -g -O2 -Wall -std=c++11