blob: c91ee5014bcd437238e4ffb302956d62f22c58c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
TARGETS = helloworld hello recherche rechcara sommeentiers testtout boucle p4 cube
.o:
../src/linker $< $@
.s.o:
../src/compilo $< $@
.s:
../src/compilo $< tmp.o
../src/linker tmp.o $@
chmod 755 $@
rm tmp.o
all: $(TARGETS)
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
cube: cube.s trig.s drawline.s
../src/compilo cube.s cube.o
../src/compilo trig.s trig.o
../src/compilo drawline.s drawline.o
../src/linker cube.o drawline.o trig.o cube
chmod 755 cube
rm cube.o drawline.o trig.o
clean:
rm -f $(TARGETS) *.o __symbols__ __text__ core
|