Skip to content
This repository has been archived by the owner on Jun 3, 2022. It is now read-only.

Commit

Permalink
Minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Kilian BOTREL committed Jul 11, 2019
1 parent a3e1e78 commit 3ae85db
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
17 changes: 15 additions & 2 deletions .gitignore
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
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 #
# #
# **************************************************************************** #

Expand All @@ -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 \
\
Expand Down Expand Up @@ -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 $@

Expand Down

0 comments on commit 3ae85db

Please sign in to comment.