From 5cbb09516a98d53943062badc08865507f18100d Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Tue, 10 Jan 2023 10:28:04 -0500 Subject: Initial commit --- makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..86bcbe2 --- /dev/null +++ b/makefile @@ -0,0 +1,27 @@ +# +# Auteur: C.-A. Brunet +# Date: 08 janvier 2018 +# Description: compilation de graphicus-01. Ce fichier fait partie de +# la distribution de Graphicus. +# + +graphicus-01: graphicus-01.o tests.o canevas.o couche.o forme.o + g++ -o graphicus-01 graphicus-01.o tests.o canevas.o couche.o forme.o + +graphicus-01.o: graphicus-01.cpp canevas.h couche.h forme.h + g++ -c graphicus-01.cpp + +tests.o: tests.cpp tests.h canevas.h couche.h forme.h + g++ -c tests.cpp + +canevas.o: canevas.cpp canevas.h couche.h forme.h + g++ -c canevas.cpp + +couche.o: couche.cpp couche.h forme.h + g++ -c couche.cpp + +forme.o: forme.cpp forme.h + g++ -c forme.cpp + +clean: + rm -f *.o -- cgit v1.2.3