Changed executable directory
authorNils Forssén <nilfo359@student.liu.se>
Tue, 12 Dec 2023 09:23:50 +0000 (10:23 +0100)
committerNils Forssén <nilfo359@student.liu.se>
Tue, 12 Dec 2023 09:23:50 +0000 (10:23 +0100)
Makefile
play [new file with mode: 0755]

index 844643121afc0a379f26d3290e9eaaf7cd7fbbdb..824b0c158491849491545c9debafd1d23b6c0747 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,9 +3,8 @@ CCFLAGS := -std=c++17 -Wall -Wextra -pedantic -Weffc++ -Wold-style-cast -I src
 LDFLAGS := -L${SFML_ROOT}/lib -I${SFML_ROOT}/include -lsfml-window -lsfml-graphics -lsfml-system
 
 OBJDIR := build
-EXEDIR := build/exe
-EXE := $(EXEDIR)/game.out
-TEST := $(EXEDIR)/test.out
+EXE := play
+TEST := test
 
 SRC :=  $(shell find src -type f -name '[^_]*.cc')
 SRC_H :=  $(shell find src -type f -name '[^_]*.h')
@@ -19,7 +18,6 @@ all: dir game-target test-target
 
 dir:
        mkdir -p $(OBJDIR)
-       mkdir -p $(EXEDIR)
 
 game: dir
        @$(MAKE) --no-print-directory game-target
@@ -43,4 +41,5 @@ test:
        ./$(TEST)
 
 clean:
-       rm -rf $(OBJDIR)/*
\ No newline at end of file
+       rm -rf $(OBJDIR)/*
+       rm -rf play test
\ No newline at end of file
diff --git a/play b/play
new file mode 100755 (executable)
index 0000000..0f1e5c0
Binary files /dev/null and b/play differ