diff options
| author | UnavailableDev <69792062+UnavailableDev@users.noreply.github.com> | 2024-06-12 12:05:45 +0200 |
|---|---|---|
| committer | UnavailableDev <69792062+UnavailableDev@users.noreply.github.com> | 2024-06-12 12:05:45 +0200 |
| commit | 126a3c79516a6417181c3fe924084032d653b596 (patch) | |
| tree | 1f1d356eccdf7d316cf7e991af036f0c0a6a53bd /makefile | |
| parent | c084bee21f66e6322d4d55b8700f0779f2c58d0d (diff) | |
| parent | 8e0a865dd375baa71357ce817847ea8a9144434c (diff) | |
Merge branch 'master' into node
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 |