22 lines
1019 B
Makefile
22 lines
1019 B
Makefile
# **************************************************************************** #
|
|
# #
|
|
# :::::::: #
|
|
# Makefile :+: :+: #
|
|
# +:+ #
|
|
# By: whaffman <whaffman@student.codam.nl> +#+ #
|
|
# +#+ #
|
|
# Created: 2025/03/24 15:14:58 by whaffman #+# #+# #
|
|
# Updated: 2025/04/05 17:33:17 by whaffman ######## odam.nl #
|
|
# #
|
|
# **************************************************************************** #
|
|
|
|
NAME= Polymorphism
|
|
SRC= main.cpp \
|
|
Animal.cpp \
|
|
Dog.cpp \
|
|
Cat.cpp \
|
|
WrongAnimal.cpp \
|
|
WrongCat.cpp
|
|
|
|
-include ../common.mk
|