home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / maths / plplot / plplot_2 / Makefile < prev    next >
Makefile  |  1994-05-02  |  1KB  |  52 lines

  1. ##############################################################################
  2. #
  3. # Makefile for PLplot under Unix.
  4. #
  5. # This just cd's to the tmp directory and runs make from there, for people
  6. # who prefer to run configure and make from the root directory ala GNU
  7. # software.  As such, it only supports the most commonly used targets in
  8. # tmp/Makefile.  It would sure be nice if make had a way to pass target
  9. # info to recursive makes.
  10. #
  11. # Note: if the default configure settings are acceptable, then you can just
  12. # type "make" and configure will be run for you.  In general however it is
  13. # best to run configure yourself to ensure all options are set correctly.
  14. #
  15. ##############################################################################
  16.  
  17. default:    tmp/Makefile
  18.     cd tmp; $(MAKE) default
  19.  
  20. libs:        tmp/Makefile
  21.     cd tmp; $(MAKE) libs
  22.  
  23. x01c:        tmp/Makefile
  24.     cd tmp; $(MAKE) x01c
  25.  
  26. x01f:        tmp/Makefile
  27.     cd tmp; $(MAKE) x01f
  28.  
  29. cdemos:        tmp/Makefile
  30.     cd tmp; $(MAKE) cdemos
  31.  
  32. fdemos:        tmp/Makefile
  33.     cd tmp; $(MAKE) fdemos
  34.  
  35. tkdemos:    tmp/Makefile
  36.     cd tmp; $(MAKE) tkdemos
  37.  
  38. install:    tmp/Makefile
  39.     cd tmp; $(MAKE) install
  40.  
  41. clean:        tmp/Makefile
  42.     cd tmp; $(MAKE) clean
  43.  
  44. realclean:    tmp/Makefile
  45.     cd tmp; $(MAKE) realclean
  46.  
  47. makefile:    tmp/Makefile
  48.     cd tmp; $(MAKE) makefile
  49.  
  50. tmp/Makefile:
  51.     ./configure
  52.