42-archive/42sh/42ShellTester/support/exit-with-status/Makefile
2017-03-24 17:43:33 +01:00

12 lines
172 B
Makefile

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