aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/Makefile b/src/Makefile
deleted file mode 100644
index b4ed4bd..0000000
--- a/src/Makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-CXX = g++
-CXXFLAGS = --std=c++14 -g -O2 -Wall
-SRC_DIR = src/
-OBJECTS = main.o State.o Game.o Global.o Enemy1.o Enemy2.o Enemy3.o Powerup.o Entity.o Player.o
-
-all: sfml-rpg
-
-sfml-rpg: $(OBJECTS)
- $(CXX) $(CXXFLAGS) $(OBJECTS) -o sfml-rpg -lsfml-graphics -lsfml-window -lsfml-system
-
-%.o : %.cpp
- $(CXX) $(CXXFLAGS) -c $<
-
-clean:
- rm -f $(OBJECTS) sfml-rpg