This repository has been archived by the owner on Jun 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kilian BOTREL
committed
Jul 11, 2019
1 parent
a3e1e78
commit 3ae85db
Showing
2 changed files
with
19 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
# Directories - Files | ||
objs | ||
*.o | ||
*.dSYM | ||
libft.a | ||
|
||
# Libraries - Headers | ||
*.a | ||
*.gch | ||
|
||
# Executables - Scripts | ||
fractol | ||
a.out | ||
.sh | ||
|
||
# Debug | ||
*.dSYM | ||
|
||
# Recovery - Settings | ||
*.swp | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
# By: kibotrel <[email protected]> +#+ +:+ +#+ # | ||
# +#+#+#+#+#+ +#+ # | ||
# Created: 2019/02/04 22:15:45 by kibotrel #+# #+# # | ||
# Updated: 2019/04/01 15:49:16 by kibotrel ### ########.fr # | ||
# Updated: 2019/07/11 13:24:23 by kibotrel ### ########.fr # | ||
# # | ||
# **************************************************************************** # | ||
|
||
|
@@ -25,6 +25,8 @@ INCDIR = ./incs/ ./libft/incs/ | |
|
||
# Source files (Can be changed) | ||
|
||
INCS = incs/env.h incs/fractol.h | ||
|
||
SRC = core/main.c core/selector.c \ | ||
core/threads.c \ | ||
\ | ||
|
@@ -107,7 +109,7 @@ $(SUBDIRS): | |
@mkdir -p $(SUBDIRS) | ||
# Redefinition of implicit compilation rule to prompt some colors and file names during the said compilation | ||
|
||
$(OBJDIR)%.o: $(SRCDIR)%.c | ||
$(OBJDIR)%.o: $(SRCDIR)%.c $(INCS) | ||
@echo "$(YELLOW) - Compiling :$(RESET)" $< | ||
@$(CC) $(CFLAGS) -c $< -o $@ | ||
|
||
|