ex02: fix and add test

This commit is contained in:
Camille Chauvet
2023-10-04 14:42:46 +00:00
parent 90b510cf0c
commit 810105e554
3 changed files with 49 additions and 8 deletions

View File

@ -4,7 +4,7 @@ SRCDIR := src
OBJDIR := obj
NAME := ex02
SRCS := $(wildcard $(SRCDIR)/*.tpp)
SRCS := $(wildcard $(SRCDIR)/*.cpp)
OBJS := $(patsubst $(SRCDIR)/%.cpp,$(OBJDIR)/%.o,$(SRCS))
all: $(NAME)
@ -23,4 +23,4 @@ fclean: clean
rm -fr $(NAME)
re: fclean
@make --no-print-directory all
@make --no-print-directory all