source: trunk/Makefile@ 25

Last change on this file since 25 was 15, checked in by Mattia Monga, 12 years ago

Aggiornati 2012

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