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.
33 lines
584 B
33 lines
584 B
# Folders and Names |
|
NAME = account |
|
SRCSDIR = . |
|
INCLUDES = . |
|
|
|
SRCS = tests.cpp Account.class.cpp |
|
|
|
# Compiler options |
|
CC = clang++ |
|
CFLAGS = -Wall -Wextra -Werror -std=c++98 |
|
|
|
################################################### |
|
# The rest is done by the MakeFile automatically, # |
|
# you should not have to modify it # |
|
################################################### |
|
|
|
all: $(NAME) |
|
|
|
$(NAME): $(SRCSDIR)/$(SRCS) |
|
@echo "Assembling $@" |
|
@$(CC) $(CFLAGS) -o $@ $^ |
|
|
|
clean: |
|
|
|
fclean: clean |
|
rm -rf $(NAME) |
|
|
|
re: fclean all |
|
|
|
test: $(NAME) |
|
./$(NAME) |
|
|
|
.PHONY: all clean fclean re test
|
|
|