Skip to content
Snippets Groups Projects
Commit d77902bf authored by Alfred Burgess's avatar Alfred Burgess
Browse files

Added

parent 8ce53fa7
Branches
Tags
No related merge requests found
...@@ -66,7 +66,8 @@ TEST_SRC_OBJ_FILES = $(patsubst $(SRC_DIR)/%.cpp,$(TEST_BUILD_DIR)/%.src.o,$(SRC ...@@ -66,7 +66,8 @@ TEST_SRC_OBJ_FILES = $(patsubst $(SRC_DIR)/%.cpp,$(TEST_BUILD_DIR)/%.src.o,$(SRC
# Output executable # Output executable
TARGET = $(BIN_DIR)/game TARGET = $(BIN_DIR)/game
all: $(TARGET) # all: $(TARGET) $(TEST_TARGET)
all: $(TARGET) test
test: $(TEST_TARGET) test: $(TEST_TARGET)
./$(TEST_TARGET) ./$(TEST_TARGET)
...@@ -95,5 +96,7 @@ clean: ...@@ -95,5 +96,7 @@ clean:
rm -rf ./*~ ./*.swp ./*.gcno rm -rf ./*~ ./*.swp ./*.gcno
rm -rf *~ rm -rf *~
remake: clean $(TARGET)
run: $(TARGET) run: $(TARGET)
./$(TARGET) ./$(TARGET)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment