d02 ex00 ok

This commit is contained in:
Hugo LAMY
2022-02-10 13:57:07 +01:00
parent 57663f5285
commit c287ea7c97
4 changed files with 116 additions and 18 deletions

View File

@@ -4,7 +4,7 @@
# . value . or .cpp #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
NAME = zombie
NAME = fixed
CC = clang++
CFLAGS = -Wall -Wextra -Werror $(INCLUDES) -std=c++98
@@ -17,12 +17,10 @@ INCLUDES = -I$(D_HEADERS)
D_SRCS = .
SRCS = main.cpp \
Zombie.cpp \
newZombie.cpp \
randomChump.cpp
Fixed.cpp
D_HEADERS = .
HEADERS = Zombie.hpp
HEADERS = Fixed.hpp
D_OBJS = builds
OBJS = $(SRCS:%.cpp=$(D_OBJS)/%.o)