Changeset 15 for trunk/Makefile
- Timestamp:
- Apr 21, 2012, 12:24:25 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r2 r15 1 CFLAGS=-m322 LDFLAGS=-m32 1 TARGET_ARCH=-m32 2 ASM=nasm 3 3 4 4 mioboot: mioboot.asm 5 nasm-l $@.lst -o $@ $<5 $(ASM) -l $@.lst -o $@ $< 6 6 7 7 mioboot-nobios: mioboot-nobios.asm 8 nasm-l $@.lst -o $@ $<8 $(ASM) -l $@.lst -o $@ $< 9 9 10 10 mioboot-nobios-simple: mioboot-nobios-simple.asm 11 nasm-l $@.lst -o $@ $<11 $(ASM) -l $@.lst -o $@ $< 12 12 13 13 14 esercizio: esercizio.asm 15 nasm -f elf $< 16 gcc -o $@ esercizio.o 14 esercizio.o: esercizio.asm 15 $(ASM) -felf $< 16 17 esercizio: esercizio.o 18 19 pthreads-pc : LDFLAGS=-lrt 17 20 18 21 pthreads-pc: pthreads-pc.c 19 cc -pthread pthreads-pc.c -o pthreads-pc20 22 21 23 fork-pc: fork-pc.c 22 cc fork-pc.c -o fork-pc23 24 24 tsl: tsl.asm 25 nasm -felf tsl.asm 26 gcc tsl.o -o tsl 25 tsl.o: tsl.asm 26 $(ASM) -felf tsl.asm 27 28 tsl: tsl.o 27 29 28 30 enter.o: enter.asm 29 nasm-felf enter.asm31 $(ASM) -felf enter.asm 30 32 31 33 threads-tsl: threads-tsl.o enter.o
Note:
See TracChangeset
for help on using the changeset viewer.