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 authored and Kay Freyer committed Nov 15, 2024
1 parent 63ddf14 commit 31780af
Show file tree
Hide file tree
Showing 3 changed files with 6 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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<img alt="GitHub last commit" src="https://img.shields.io/github/last-commit/Keisn1/libft?color=brightgreen" />
<img alt="GitHub Lines of Code" src="https://tokei.rs/b1/github/Keisn1/libft?category=code" />
</p>
[![42 Project Score](https://42-project-badge.glitch.me/users/kfreyer/project/libft)](https://github.com/ricardoreves/42-project-badge)

# Table of contents <span class="tag" data-tag-name="TOC"><span class="smallcaps">TOC</span></span>

Expand Down
1 change: 1 addition & 0 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<img alt="GitHub last commit" src="https://img.shields.io/github/last-commit/Keisn1/libft?color=brightgreen" />
<img alt="GitHub Lines of Code" src="https://tokei.rs/b1/github/Keisn1/libft?category=code" />
</p>
[![42 Project Score](https://42-project-badge.glitch.me/users/kfreyer/project/libft)](https://github.com/ricardoreves/42-project-badge)
#+end_export
# #+begin_export markdown
# # # (https://github.com/oakoudad/badge42)
Expand Down

0 comments on commit 31780af

Please sign in to comment.