42-archive/42sh/42shelltest-tmp/support/delete-file/Makefile
2017-03-18 01:30:28 +01:00

12 lines
167 B
Makefile

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