home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 13
/
AACD13.ISO
/
AACD
/
Programming
/
Atmel
/
Asm
/
src
/
makefile
< prev
next >
Wrap
Makefile
|
2000-08-22
|
377b
|
22 lines
asm: asm.o math.o buff.o string.o format.o machine.o
vc asm.o math.o buff.o string.o format.o machine.o -o asm
asm.o: asm.c
vc -c asm.c -o asm.o
math.o: math.c
vc -c math.c -o math.o
buff.o: buff.c
vc -c buff.c -o buff.o
string.o: string.c
vc -c string.c -o string.o
format.o: format.c
vc -c format.c -o format.o
machine.o: machine.c
vc -c machine.c -o machine.o