home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Programming / Atmel / Asm / src / makefile < prev    next >
Makefile  |  2000-08-22  |  377b  |  22 lines

  1. asm: asm.o math.o buff.o string.o format.o machine.o
  2.     vc asm.o math.o buff.o string.o format.o machine.o -o asm
  3.  
  4. asm.o: asm.c
  5.     vc -c asm.c -o asm.o
  6.  
  7. math.o: math.c
  8.     vc -c math.c -o math.o
  9.  
  10. buff.o: buff.c
  11.     vc -c buff.c -o buff.o
  12.  
  13. string.o: string.c
  14.     vc -c string.c -o string.o
  15.  
  16. format.o: format.c
  17.     vc -c format.c -o format.o
  18.  
  19. machine.o: machine.c
  20.     vc -c machine.c -o machine.o
  21.  
  22.