home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 3 / Meeting_Pearls_III.iso / Pearls / texmf / source / TeX / evpath / SMakefile < prev    next >
Makefile  |  1994-11-16  |  881b  |  41 lines

  1. #
  2. #    EVPaths: Environment Variables Path Routines
  3. #
  4. #    © 1994 by Giuseppe Ghibò
  5. #
  6. #
  7. # last revision: 16-Nov-1994
  8. #
  9. # Examples:
  10. #
  11. #    SMAKE -a all CPU=68040
  12.  
  13. CPU = ANY
  14. CFLAGS = OPT NOSTKCHK NOICON
  15.  
  16. all: EVPaths.lib TeXWhereIs TeXWhereIs2 TeXSaveString
  17.  
  18. SNPrintf.o:    SNPrintf.a
  19.     SC SNPrintf.a
  20.  
  21. EVPaths.o:    EVPaths.c
  22.     SC CPU=$(CPU) $(CFLAGS) EVPaths.c
  23.  
  24. EVPaths.lib:    EVPaths.o SNPrintf.o
  25.     OML EVPaths.lib R EVPaths.o SNPrintf.o
  26.  
  27. TeXWhereIs:    TeXWhereIs.c EVPaths.lib
  28.     SC CPU=$(CPU) $(CFLAGS) LINK LIB EVPaths.lib TeXWhereIs
  29.  
  30. TeXWhereIs2:    TeXWhereIs2.o EVPaths.lib
  31.     SLINK FROM TeXWhereIs2.o TO TeXWhereIs2 LIB EVPaths.lib LIB:sc.lib
  32.  
  33. TeXWhereIs2.o:    TeXWhereIs2.c
  34.     SC CPU=$(CPU) $(CFLAGS) TeXWhereIs2.c
  35.  
  36. TeXSaveString:    TeXSaveString.o EVPaths.lib
  37.     SLINK FROM TeXSaveString.o TO TeXSaveString LIB EVPaths.lib LIB:sc.lib
  38.  
  39. TeXSaveString.o:    TeXSaveString.c
  40.     SC CPU=$(CPU) $(CFLAGS) TeXSaveString.c
  41.