home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / f2c-93.04.28-src.tgz / tar.out / fsf / f2c / Makefile.in < prev    next >
Makefile  |  1996-09-28  |  908b  |  49 lines

  1. #### Start of system configuration section. ####
  2.  
  3. VPATH =        @srcdir@
  4. srcdir =    @srcdir@
  5.  
  6. # Common prefix for machine-independent installed files.
  7.  
  8. prefix =    /ade
  9.  
  10. # Common prefix for machine-dependent installed files.
  11.  
  12. exec_prefix =    $(prefix)
  13.  
  14. # Directory to install executables in.
  15.  
  16. bindir =    $(exec_prefix)/bin
  17.  
  18. # Directory to install the man page in.
  19.  
  20. mandir =    $(prefix)/man/man$(manext)
  21.  
  22. # Number to put on the man page filename.
  23.  
  24. manext =    1
  25.  
  26. # Program to install data like man pages.
  27.  
  28. INSTALL_DATA =    @INSTALL_DATA@
  29.  
  30. # Generic install program.
  31.  
  32. INSTALL =    @INSTALL@
  33.  
  34. MAKE =        make
  35.  
  36. #### End of system configuration section. ####
  37.  
  38. all:
  39.         @(cd src; $(MAKE))
  40.         @(cd libF77; $(MAKE))
  41.         @(cd libI77; $(MAKE))
  42.  
  43. install:
  44.         @(cd src; $(MAKE) install)
  45.         @(cd libF77; $(MAKE) install)
  46.         @(cd libI77; $(MAKE) install)
  47.         $(INSTALL_DATA) $(srcdir)/f2c.1t $(mandir)/f2c.1
  48.         $(INSTALL_DATA) $(srcdir)/f2c.h $(prefix)/include
  49.