Skip to content
Snippets Groups Projects
Commit 149b101b authored by DUPASQUIER YOANN p2301526's avatar DUPASQUIER YOANN p2301526
Browse files

le make

parent 8f006628
No related branches found
No related tags found
No related merge requests found
Pipeline #188121 failed
Makefile 0 → 100644
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment