Skip to content

Commit

Permalink
remove obj build and bin
Browse files Browse the repository at this point in the history
  • Loading branch information
Kay Freyer committed Nov 13, 2024
1 parent 63ddf14 commit 0a6f028
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ SRC_DIR_BONUS = ./src_bonus

OBJ_DIR := ./obj
BIN_DIR := ./bin
BUILD_DIR := ./build
TESTS_DIR := ./tests

#Source files
Expand Down Expand Up @@ -74,10 +75,12 @@ $(TEST_TARGET)-FSANITIZE: $(OBJ_FILES) $(TEST_OBJ_FILES) $(OBJ_FILES_BONUS)
############ PHONY ##################
clean:
rm -f $(OBJ_FILES) $(OBJ_FILES_BONUS) $(TEST_OBJ_FILES)
rm -rf build

fclean: clean
rm -f $(BIN_DIR)/*
rm -rf $(BIN_DIR)
rm -rf $(OBJ_DIR)
rm -rf $(BUILD_DIR)

re: fclean all

Expand Down

0 comments on commit 0a6f028

Please sign in to comment.