aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorSanJacobs2022-04-15 16:24:57 +0200
committerSanJacobs2022-04-15 16:24:57 +0200
commitd46f4b465d72a35de7e8796767dbee6c87c08cf1 (patch)
tree0f1791d43c18a46645920a02b2c1afed3ac45e43 /makefile
parentb1119b554361a8e34453af2281673e3c1e9d2e4c (diff)
downloadsatscalc-d46f4b465d72a35de7e8796767dbee6c87c08cf1.tar.gz
satscalc-d46f4b465d72a35de7e8796767dbee6c87c08cf1.tar.bz2
satscalc-d46f4b465d72a35de7e8796767dbee6c87c08cf1.zip
Removed linking to Boost
Diffstat (limited to 'makefile')
-rw-r--r--makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/makefile b/makefile
index ef4d837..7cf2bb8 100644
--- a/makefile
+++ b/makefile
@@ -6,7 +6,8 @@ LIBDIR=-L /usr/lib/x86_64-linux-gnu/
# LIBS are the libs you are using written with a -l and then ignoring the lib-part at the beginning of the file's name.
# So "libboost_date_time.a" will be just "-lboost_date_time"
-LIBS=-lboost_date_time
+LIBS=
+#-lboost_date_time
# Sources are the source code files. Only the .cpp files, becuase the .h files are included into them during pre-processing.
SOURCES=$(wildcard src/*.cpp)