42-archive/42sh/42shelltest-tmp/support/sleep-and-write-on-stderr/Makefile
2017-03-18 01:30:28 +01:00

12 lines
181 B
Makefile

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