CPP04/ex00/Makefile
2025-04-14 18:13:35 +02:00

18 lines
1.1 KiB
Makefile

# **************************************************************************** #
# #
# :::::::: #
# Makefile :+: :+: #
# +:+ #
# By: whaffman <whaffman@student.codam.nl> +#+ #
# +#+ #
# Created: 2025/03/24 15:14:58 by whaffman #+# #+# #
# Updated: 2025/04/10 11:42:36 by whaffman ######## odam.nl #
# #
# **************************************************************************** #
NAME= Polymorphism
TEST_SRC= Animal_test.cpp Dog_test.cpp Cat_test.cpp WrongAnimal_test.cpp WrongCat_test.cpp
SRC= main.cpp $(TEST_SRC) Animal.cpp Dog.cpp Cat.cpp WrongAnimal.cpp WrongCat.cpp
-include ../common.mk