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

12 lines
185 B
Makefile

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