diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-07 15:22:00 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-07 15:22:00 +0200 |
commit | 9e1b22e12bb0915081c94e6266b9725251500dcd (patch) | |
tree | 014f96a345201df949bcb4ff032728e792c18be9 /makefile | |
parent | bde4c3fe7885b66c0bb59b8407c74b350fc6b44d (diff) |
WIP begin writing factory
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |