Last change
on this file since 2 was 2, checked in by Mattia Monga, 14 years ago |
Importazione sorgenti
|
File size:
630 bytes
|
Rev | Line | |
---|
[2] | 1 | CFLAGS=-m32
|
---|
| 2 | LDFLAGS=-m32
|
---|
| 3 |
|
---|
| 4 | mioboot: mioboot.asm
|
---|
| 5 | nasm -l $@.lst -o $@ $<
|
---|
| 6 |
|
---|
| 7 | mioboot-nobios: mioboot-nobios.asm
|
---|
| 8 | nasm -l $@.lst -o $@ $<
|
---|
| 9 |
|
---|
| 10 | mioboot-nobios-simple: mioboot-nobios-simple.asm
|
---|
| 11 | nasm -l $@.lst -o $@ $<
|
---|
| 12 |
|
---|
| 13 |
|
---|
| 14 | esercizio: esercizio.asm
|
---|
| 15 | nasm -f elf $<
|
---|
| 16 | gcc -o $@ esercizio.o
|
---|
| 17 |
|
---|
| 18 | pthreads-pc: pthreads-pc.c
|
---|
| 19 | cc -pthread pthreads-pc.c -o pthreads-pc
|
---|
| 20 |
|
---|
| 21 | fork-pc: fork-pc.c
|
---|
| 22 | cc fork-pc.c -o fork-pc
|
---|
| 23 |
|
---|
| 24 | tsl: tsl.asm
|
---|
| 25 | nasm -felf tsl.asm
|
---|
| 26 | gcc tsl.o -o tsl
|
---|
| 27 |
|
---|
| 28 | enter.o: enter.asm
|
---|
| 29 | nasm -felf enter.asm
|
---|
| 30 |
|
---|
| 31 | threads-tsl: threads-tsl.o enter.o
|
---|
| 32 |
|
---|
| 33 |
|
---|
| 34 | .PHONY: clean
|
---|
| 35 | clean:
|
---|
| 36 | rm -f mioboot mioboot-nobios mioboot-nobios-simple *.lst *~ semantic.cache esegui forca
|
---|
Note:
See
TracBrowser
for help on using the repository browser.