42-archive/42sh/42shelltest-tmp/support/read-on-stdin-once/Makefile
2017-03-18 01:30:28 +01:00

12 lines
174 B
Makefile

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