home *** CD-ROM | disk | FTP | other *** search
/ Hall of Fame / HallofFameCDROM.cdr / proglc / index.lzh / INDEX.MAK < prev    next >
Text File  |  1988-02-02  |  896b  |  28 lines

  1. # makefile for building index.lib
  2. #
  3. .c.obj:
  4.   tcc -c -G -Z $<
  5.  
  6. index.lib: inxrtns.obj iopen.obj ireadr.obj istart.obj ireadn.obj ireadp.obj \
  7.            iwrite.obj irewrite.obj idelete.obj irebuild.obj
  8.  
  9. # if you're using QLIB, then comment the lines for MS LIB and un-comment
  10. # the following line
  11. #  qlib index @inames
  12.  
  13. # comment the following two lines if you're using QLIB
  14.   del index.lib
  15.   lib index inxrtns iopen ireadr istart ireadn ireadp iwrite \
  16.       irewrite idelete irebuild;
  17.  
  18. inxrtns.obj:    inxdefs.h
  19. IOPEN.obj:      inxdefs.h
  20. IREADR.obj:     inxdefs.h
  21. ISTART.obj:     inxdefs.h
  22. IREADN.obj:     inxdefs.h
  23. IREADP.obj:     inxdefs.h
  24. IWRITE.obj:     inxdefs.h
  25. IREWRITE.obj:   inxdefs.h
  26. IDELETE.obj:    inxdefs.h
  27. irebuild.obj:    inxdefs.h
  28.