home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / maths / plplot / plplot_2 / cf / exes.in < prev    next >
Encoding:
Text File  |  1994-08-10  |  2.0 KB  |  80 lines

  1. # -----------------------------------------------------------------------
  2. # $Id: exes.in,v 1.6 1994/08/10 01:13:01 mjl Exp $
  3. #
  4. # Maurice LeBrun
  5. # IFS, University of Texas at Austin
  6. # 19-Jul-1994
  7. #
  8. # PLplot program file dependencies and targets.
  9. # Targets supported here include: 
  10. #
  11. #    plrender    Metafile viewer
  12. #    plserver    Renderer for Tk/DP driver 
  13. #    pltcl        PLplot tcl interpreter
  14. #    pltek        Renderer for tek files
  15. #    fonts        font generators and font files
  16. #
  17. # All but "fonts" are in the default build rule.
  18. # -----------------------------------------------------------------------
  19.  
  20. # Utility programs.
  21.  
  22. pltek$O:    pltek.c
  23.     $(CC) $(CC_FLAGS) pltek.c
  24.  
  25. pltek$E:    pltek$O
  26.     $(LDC) $(LDC_FLAGS) $(STARTUP) pltek$O $(TO) $@ \
  27.         $(LDC_LIBS)
  28.  
  29. plrender$O:    $(PLLIBS) plrender.c
  30.     $(CC) $(CC_FLAGS) plrender.c
  31.  
  32. plrender$E:    $(PLLIBS) plrender$O
  33.     $(LDC) $(LDC_FLAGS) $(STARTUP) plrender$O $(PLLIB_LDC) $(TO) $@ \
  34.         $(LDC_LIBS)
  35.  
  36. plserver$O:    $(PLLIBS) plserver.c
  37.     $(CC) $(CC_FLAGS) plserver.c
  38.  
  39. plserver$E:    $(PLLIBS) plserver$O
  40.     $(LDC) $(LDC_FLAGS) $(STARTUP) plserver$O $(PLLIB_LDC) $(TO) $@ \
  41.         $(LDC_LIBS)
  42.  
  43. pltcl$O:    $(PLLIBS) pltcl.c
  44.     $(CC) $(CC_FLAGS) pltcl.c
  45.  
  46. pltcl$E:    $(PLLIBS) pltcl$O
  47.     $(LDC) $(LDC_FLAGS) $(STARTUP) pltcl$O $(PLLIB_LDC) $(TO) $@ \
  48.         $(LDC_LIBS)
  49.  
  50. # -----------------------------------------------------------------------
  51. # Font files.
  52. # Note it is no longer necessary to actually make these since as of
  53. # PLPLOT 4.99a the font files are portable.
  54. #
  55. # sfont - standard font
  56. # xfont - extended fonts
  57.  
  58. fonts:    sfont xfont
  59.  
  60. sfont:    $(PLFNT_PATH)plstnd5.fnt
  61. xfont:    $(PLFNT_PATH)plxtnd5.fnt
  62.  
  63. $(PLFNT_PATH)plstnd5.fnt: stndfont$E pdfutils$O $(FONT_OBJ)
  64.     -./stndfont$E
  65.     -mv *.fnt $(PLFNT_DIR)
  66.  
  67. $(PLFNT_PATH)plxtnd5.fnt: xtndfont$E pdfutils$O $(FONT_OBJ)
  68.     -./xtndfont$E
  69.     -mv *.fnt $(PLFNT_DIR)
  70.  
  71. stndfont$E:    $(PLLIBS) stndfont$O
  72.     $(LDC) $(LDC_FLAGS) $(STARTUP) stndfont$O $(FONT_OBJ) \
  73.          $(PLLIB_LDC) $(TO) $@ $(LDC_LIBS)
  74.  
  75. xtndfont$E:    $(PLLIBS) xtndfont$O
  76.     $(LDC) $(LDC_FLAGS) $(STARTUP) xtndfont$O $(FONT_OBJ) \
  77.          $(PLLIB_LDC) $(TO) $@ $(LDC_LIBS)
  78.  
  79.