Changes between Version 12 and Version 13 of Makefile
- Timestamp:
- Apr 27, 2016, 4:14:15 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Makefile
v12 v13 26 26 27 27 {{{ 28 #! python28 #!c 29 29 30 30 #include <stdio.h> … … 40 40 41 41 }}} 42 43 A questo punto si può automatizzare la produzione di `somma` con un `Makefile` 44 45 46 * `Makefile` 47 48 {{{#!make 49 .PHONY: all clean 50 51 52 all: somma 53 54 55 clean: 56 rm -f *.o somma 57 58 somma: somma.o sommaf.o 59 gcc -o somma somma.o sommaf.o 60 61 somma.o: somma.c 62 gcc -c somma.c 63 64 sommaf.o: sommaf.asm 65 nasm -f elf32 sommaf.asm 66 67 }}} 68 69