2023-12-02 17:26:10 +00:00
|
|
|
# **************************************************************************** #
|
|
|
|
# #
|
|
|
|
# ::: :::::::: #
|
|
|
|
# Makefile :+: :+: :+: #
|
|
|
|
# +:+ +:+ +:+ #
|
|
|
|
# By: achubuko <marvin@42.fr> +#+ +:+ +#+ #
|
|
|
|
# +#+#+#+#+#+ +#+ #
|
|
|
|
# Created: 2023/12/02 21:33:22 by achubuko #+# #+# #
|
2023-12-02 19:32:22 +00:00
|
|
|
# Updated: 2023/12/02 23:31:19 by achubuko ### ########.fr #
|
2023-12-02 17:26:10 +00:00
|
|
|
# #
|
|
|
|
# **************************************************************************** #
|
|
|
|
|
|
|
|
NAME=rush-02
|
|
|
|
_CFLAGS = -Wall -Wextra -Werror
|
|
|
|
CFLAGS = -g
|
2023-12-02 17:52:49 +00:00
|
|
|
CFLAGS := $(_CFLAGS) $(CFLAGS)
|
2023-12-02 17:26:10 +00:00
|
|
|
#####################################
|
|
|
|
######### MANDATORY RULES ###########
|
|
|
|
#####################################
|
|
|
|
|
|
|
|
# all: default rule
|
|
|
|
# norme prerequisite is not mandatory
|
|
|
|
all: $(NAME) norme
|
|
|
|
|
|
|
|
# clean: Delete *.o for project and libraries
|
|
|
|
clean:
|
|
|
|
rm -rdf $(wildcard */*.o)
|
|
|
|
|
|
|
|
# fclean: Delete *.o files and delete named executable
|
|
|
|
fclean: clean
|
|
|
|
rm -f $(NAME)
|
|
|
|
|
|
|
|
# re: full clean and recompilation
|
|
|
|
re: fclean all
|
|
|
|
|
|
|
|
# these targets are not backed by files, therefore, always run when called
|
|
|
|
.PHONY: all clean fclean re purge norme
|
|
|
|
#####################################
|
|
|
|
########## PROJECT RULES ############
|
|
|
|
#####################################
|
|
|
|
norme:
|
|
|
|
norminette ex00
|
|
|
|
cfiles := $(wildcard ex00/*.c)
|
|
|
|
ofiles = $(foreach f, $(cfiles), $(subst .c,.o,$f))
|
|
|
|
%.o: %.c %.h
|
2023-12-02 17:52:49 +00:00
|
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
2023-12-02 17:26:10 +00:00
|
|
|
$(NAME): $(ofiles)
|
2023-12-02 19:32:22 +00:00
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $(LOADLIBES) $(LDLIBS) $@ $^
|