NAME=sleep_and_write_on_stderr TARGET_DIR=. $(NAME): all all: gcc -Wall -Werror -Wextra main.c -o "$(TARGET_DIR)/$(NAME)" fclean: rm -f "$(TARGET_DIR)/$(NAME)" re: fclean all