source: trunk/Makefile@ 15

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

Aggiornati 2012

File size: 602 bytes
RevLine 
[15]1TARGET_ARCH=-m32
2ASM=nasm
[2]3
4mioboot: mioboot.asm
[15]5 $(ASM) -l $@.lst -o $@ $<
[2]6
7mioboot-nobios: mioboot-nobios.asm
[15]8 $(ASM) -l $@.lst -o $@ $<
[2]9
10mioboot-nobios-simple: mioboot-nobios-simple.asm
[15]11 $(ASM) -l $@.lst -o $@ $<
[2]12
13
[15]14esercizio.o: esercizio.asm
15 $(ASM) -felf $<
[2]16
[15]17esercizio: esercizio.o
18
19pthreads-pc : LDFLAGS=-lrt
20
[2]21pthreads-pc: pthreads-pc.c
22
23fork-pc: fork-pc.c
24
[15]25tsl.o: tsl.asm
26 $(ASM) -felf tsl.asm
[2]27
[15]28tsl: tsl.o
29
[2]30enter.o: enter.asm
[15]31 $(ASM) -felf enter.asm
[2]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.