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 / az_020.make < prev    next >
Text File  |  1989-11-06  |  1KB  |  32 lines

  1. : A man should be ashamed to die unless he has won at least one battle
  2. : for humanity.                                           Horace Mann
  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. :  This version will only run with an 020, (881 doesn't matter)
  10. :  Special Thanks to Brad Fowles whose LUCAS project make this possible
  11. :
  12. :  assign COMPILE: to where the executable file should go
  13. :
  14. : example.c   contains the main program
  15. : struct.inc  contains the gadget and IntuiText Structures
  16. : clean2.inc  contains the routines to close everything and exit
  17. : prop.inc    conþains the functions which manipulate the proportional Gadgetry
  18. : div020.asm  is my Quad division routine (assembly)
  19. : mutl020.asm is my Quad Multiplication routnine (assembly)
  20. :  
  21. COMPILE:PropGadget_A020 : ex.o mult020.o div020.o add.o 
  22.   ln +cdb -o COMPILE:PropGadget_A020 ex.o add.o mult020.o div020.o c.lib
  23.  
  24. ex.o : ex.c struct.inc clean2.inc prop.inc
  25.   cc -Dmachine=MC68020 ex.c
  26. add.o     : add.asm
  27.   as   add.asm
  28. mult020.o : mult020.asm
  29.   as   mult020.asm
  30. div020.o   : div020.asm
  31.   as   div020.asm
  32.