diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-26 17:26:36 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-26 17:26:36 +0200 |
commit | 6781cee55a4e7f232eae3e5f2a652045412339ae (patch) | |
tree | 2bfd37fd36f4513d24c076051c64ee07608ddcf6 /makefile | |
parent | c101364d4aafe50807cf7c8a831fb66eade3fb7f (diff) |
use cmake instead of make
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/makefile b/makefile deleted file mode 100644 index f6797c7..0000000 --- a/makefile +++ /dev/null @@ -1,19 +0,0 @@ -.PHONY: FORCE - -CXXFLAGS += -std=c++20 -LDFLAGS += -lstdc++ - -OBJS += main.o -OBJS += backend/EnemyFactory.o -OBJS += backend/LocationFactory.o -OBJS += backend/ObjectFactory.o -OBJS += backend/Object.o - -main: $(OBJS) - -memtest: main FORCE - valgrind ./$< - -compile_commands.json: - compiledb make -Bn - |