You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
259 B

3 years ago
NAME = megaphone
SRC = main.cpp
OBJ = main.o
3 years ago
CXXFLAGS = -std=c++98 -Wall -Werror -Wextra
3 years ago
RM = rm -rf
$(NAME): $(OBJ)
c++ $(OBJ) -o $(NAME)
3 years ago
all: $(NAME)
clean:
$(RM) $(OBJ)
fclean: clean
3 years ago
$(RM) $(NAME)
re: fclean all
.PHONY: all clean fclean re