diff options
Diffstat (limited to 'samples/Makefile.samples')
-rw-r--r-- | samples/Makefile.samples | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/samples/Makefile.samples b/samples/Makefile.samples index 7d004ca..978d9d0 100644 --- a/samples/Makefile.samples +++ b/samples/Makefile.samples @@ -10,7 +10,14 @@ chmod 755 $@ rm tmp.o -all: hello recherche rechcara sommeentiers testtout +all: helloworld hello recherche rechcara sommeentiers testtout boucle + +helloworld: fichier1.s fichier2.s + ../src/compilo fichier1.s fichier1.o + ../src/compilo fichier2.s fichier2.o + ../src/linker fichier1.o fichier2.o helloworld + chmod 755 helloworld + rm fichier1.o fichier2.o clean: - rm -f recherche rechcara sommeenters testtout *.o __symbols__ __text__ + rm -f helloworld recherche rechcara sommeenters testtout *.o __symbols__ __text__ |