Line | |
---|
1 | TARGET_ARCH=-m32
|
---|
2 | ASM=nasm
|
---|
3 |
|
---|
4 | mioboot: mioboot.asm
|
---|
5 | $(ASM) -l $@.lst -o $@ $<
|
---|
6 |
|
---|
7 | mioboot-nobios: mioboot-nobios.asm
|
---|
8 | $(ASM) -l $@.lst -o $@ $<
|
---|
9 |
|
---|
10 | mioboot-nobios-simple: mioboot-nobios-simple.asm
|
---|
11 | $(ASM) -l $@.lst -o $@ $<
|
---|
12 |
|
---|
13 |
|
---|
14 | esercizio.o: esercizio.asm
|
---|
15 | $(ASM) -felf $<
|
---|
16 |
|
---|
17 | esercizio: esercizio.o
|
---|
18 |
|
---|
19 | pthreads-pc : LDFLAGS=-lrt
|
---|
20 |
|
---|
21 | pthreads-pc: pthreads-pc.c
|
---|
22 |
|
---|
23 | fork-pc: fork-pc.c
|
---|
24 |
|
---|
25 | tsl.o: tsl.asm
|
---|
26 | $(ASM) -felf tsl.asm
|
---|
27 |
|
---|
28 | tsl: tsl.o
|
---|
29 |
|
---|
30 | enter.o: enter.asm
|
---|
31 | $(ASM) -felf enter.asm
|
---|
32 |
|
---|
33 | threads-tsl: threads-tsl.o enter.o
|
---|
34 |
|
---|
35 |
|
---|
36 | .PHONY: clean
|
---|
37 | clean:
|
---|
38 | rm -f mioboot mioboot-nobios mioboot-nobios-simple *.lst *~ semantic.cache esegui forca
|
---|
Note:
See
TracBrowser
for help on using the repository browser.