42-archive/42sh/42ShellTester/support/write-on-stderr/Makefile
2017-03-24 17:43:33 +01:00

12 lines
171 B
Makefile

NAME=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