aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-06-07 15:22:00 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-06-07 15:22:00 +0200
commit9e1b22e12bb0915081c94e6266b9725251500dcd (patch)
tree014f96a345201df949bcb4ff032728e792c18be9 /makefile
parentbde4c3fe7885b66c0bb59b8407c74b350fc6b44d (diff)
WIP begin writing factory
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 31bee7c..509e1e8 100644
--- a/makefile
+++ b/makefile
@@ -1,7 +1,7 @@
CC = g++
LD = g++
RM = rm -f
-CFLAGS = -g -std=c++17
+CFLAGS = -g -std=c++20
LFLAGS =
TARGET = main
SRCS := $(wildcard *.cpp)
@@ -18,5 +18,5 @@ $(TARGET): $(OBJS)
clean:
$(RM) $(TARGET) $(OBJS)
-compile_commands: clean
+compile_commands.json:
compiledb make -Bn