CXXFLAGS = -g -O3 -Wall -Wextra -Wuninitialized -pedantic -Wshadow -Weffc++ -std=c++14 OBJS = mySort main animalTest game all: ${OBJS} main: sort.o aux.o aux.o: aux.h sort.o: aux.h sort.h animalTest: animals.o game: animals.o animals.o: animals.h clean: rm -f ${OBJS} *.o