home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff269.lzh / PropGadget / aztec.make < prev    next >
Text File  |  1989-11-06  |  1KB  |  31 lines

  1. :  There is a time in the affairs of men, which taken at the flood 
  2. :  leads on to fame and fortune.                        Julius Caesar (Act IV)
  3. :
  4. :           Jerry J. Trantow
  5. :           1560 A East Irving Place
  6. :           Milwaukee, Wi 53202-1460
  7. :
  8. :  This is a Aztec Make file for the PropGadget Example
  9. :
  10. :  assign COMPILE: to where the executable file should go
  11. :
  12. : example.c   contains the main program
  13. : struct.inc  contains the gadget and IntuiText Structures
  14. : clean2.inc  contains the routines to close everything and exit
  15. : prop.inc    conþains the functions which manipulate the proportional Gadgetry
  16. : div020.asm  is my Quad division routine (assembly)
  17. : mutl020.asm is my Quad Multiplication routnine (assembly)
  18. :  
  19.  
  20. COMPILE:PropGadget_A000 : ex.o mult.o div.o add.o Aztec.make 
  21.   ln +cdb -o COMPILE:PropGadget_A000 ex.o add.o mult.o div.o c.lib
  22.  
  23. ex.o : ex.c struct.inc clean2.inc prop.inc
  24.   cc  ex.c
  25. add.o     : add.asm
  26.   as   add.asm
  27. mult.o : mult.asm
  28.   as   mult.asm
  29. div.o   : div.asm
  30.   as   div.asm
  31.