aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile19
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
-