Skip to content
Snippets Groups Projects
Makefile 391 B
Newer Older
DUPASQUIER YOANN p2301526's avatar
DUPASQUIER YOANN p2301526 committed
all: bin/test

bin/test: bin/mainTest.o bin/Pixel.o bin/Image.o
	g++ -g bin/mainTest.o bin/Pixel.o bin/Image.o -o bin/test

bin/mainTest.o: src/mainTest.cpp src/Pixel.h
	g++ -g -Wall -c src/mainTest.cpp

bin/Pixel.o: src/Pixel.cpp src/Pixel.h
	g++ -g -Wall -c src/Pixel.cpp
	
bin/Image.o: src/Image.cpp src/Image.h
	g++ -g -Wall -c src/Image.cpp
	
clean:
	rm *.o

veryclean: clean
	rm *.out