summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2021-06-19 09:18:26 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2021-06-19 09:18:26 +0200
commita2be8eba3aaf11a9a73092793d27d6d46b4270cd (patch)
treeec8d463fe0537785337b4632e0c59bc1185b68dc /Makefile
parent80290e7d65dc498e9ea5e64aa6cbc65282072deb (diff)
Add .so target. Fix ready state checks.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 335e5aa..af29818 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ SRC = \
OBJ = $(patsubst %.cc,%.o,$(SRC))
-CXXFLAGS = -s -O3 -std=c++17
+CXXFLAGS = -g -O3 -std=c++17 -I.
%.o: %.cc
g++ $(CXXFLAGS) -c $< -o $@