philosophers/philo/Makefile

47 lines
1.5 KiB
Makefile
Raw Normal View History

2023-05-18 17:02:05 +02:00
# **************************************************************************** #
# #
# .--. _ #
# Makefile |o_o || | #
# |:_/ || |_ _ ___ __ #
# By: djonker <djonker@student.codam.nl> // \ \ __| | | \ \/ / #
# (| | )|_| |_| |> < #
# Created: 2021/08/19 15:20:20 by djonker /'\_ _/`\__|\__,_/_/\_\ #
# Updated: 2023/05/14 09:08:22 by djonker \___)=(___/ #
# #
# **************************************************************************** #
NAME =philo
CC =gcc
CFLAGS =-Wall -Werror -Wextra -g -fsanitize=thread
RM =rm -f
SRC =src/philo.c\
src/init.c\
src/util.c
OBJ =$(SRC:src/%.c=obj/%.o)
all: $(NAME)
clean:
@$(RM) -r obj
@printf "\e[1;35mCleaned Object Files\n\e[0;00m"
fclean: clean
@$(RM) philo philo_bonus
@printf "\e[1;31mCleaned Executables\n\e[0;00m"
re: fclean all
$(NAME):
$(OBJ): $(SRC)
@mkdir -p $(dir $@)
@printf "\e[1;34mBuilding $@\n\e[0;00m"
@$(CC) $(CFLAGS) -c $(@:obj/%.o=src/%.c) -o $@
philo: $(OBJ)
@printf "\e[1;36mCompiling $@\n\e[0;00m"
@$(CC) $(CFLAGS) $^ -o $@
@printf "\e[1;32mDone\e[0;00m\n"
.PHONY: all clean fclean re