home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff226.lzh / Vlt / xprlib / library / makefile < prev    next >
Makefile  |  1989-06-25  |  1KB  |  50 lines

  1. ### makefile
  2. #
  3. #   DESCRIPTION:
  4. #   ===========
  5. #
  6. #    This is the makefile for the xprascii.library.
  7. #    This version is written for Aztec C. It is based on the example
  8. #    library  by Jim Mackraz who got some stuff from Neil Katin.
  9. #    All changes and additions by me.
  10. #
  11. #   AUTHOR/DATE:  W.G.J. Langeveld, February 1989.
  12. #   ============
  13. #
  14. ###
  15.  
  16. All:           xprascii.library xpr.lib
  17.  
  18. # The order in the following is important!
  19. xprascii.library: xprascii.o timeout.o funky.o protolib.o rtag.o libface.o
  20.                ln -g -o xprascii.library xprascii.o timeout.o funky.o protolib.o \
  21.                      rtag.o libface.o -lc
  22.  
  23. xpr.lib:       liblink.o
  24.                lb xpr.lib -v liblink.o
  25.  
  26. xprfuncs.o:    xprfuncs.c xproto.h
  27.                cc xprfuncs.c
  28.  
  29. liblink.o:     liblink.asm
  30.                as liblink.asm
  31.  
  32. xprascii.o:    xprascii.c xproto.h
  33.                cc xprascii.c
  34.  
  35. timeout.o:     timeout.c
  36.                cc timeout.c
  37.  
  38. protolib.o:    protolib.c protolib.h
  39.                cc protolib.c
  40.  
  41. rtag.o:        rtag.asm
  42.                as rtag.asm
  43.  
  44. funky.o:       funky.asm
  45.                as funky.asm
  46.  
  47. libface.o:     libface.asm
  48.                as libface.asm
  49.  
  50.