home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / gnu / pdksh-4.9-src.lha / src / amiga / pdksh-4.9 / Makefile.in < prev    next >
Makefile  |  1994-07-10  |  1KB  |  55 lines

  1. # PD Bourne/Korn Shell
  2. # $Id: Makefile,v 1.5 93/05/08 15:59:28 sjg Exp $
  3.  
  4. #### Start of system configuration section. ####
  5.  
  6. srcdir = @srcdir@
  7. VPATH = @srcdir@
  8.  
  9. # Common prefix for machine-independent installed files.
  10. prefix = /gnu
  11. # Common prefix for machine-dependent installed files.
  12. exec_prefix = $(prefix)
  13.  
  14. # Directory to install executables in.
  15. bindir = $(exec_prefix)/bin
  16. # Directory to install libraries in.
  17. libdir = $(exec_prefix)/lib
  18. # Directory to install the Info files in.
  19. infodir = $(prefix)/info
  20. # Directory to install the man page in.
  21. mandir = $(prefix)/man/man$(manext)
  22. # Number to put on the man page filename.
  23. manext = 1
  24.  
  25. # Program to install executables.
  26. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  27. # Program to install data like man pages.
  28. INSTALL_DATA = @INSTALL_DATA@
  29. # Generic install program.
  30. INSTALL = @INSTALL@
  31.  
  32. #### End of system configuration section. ####
  33.  
  34. SHELL =        /bin/sh
  35. MAKE =        make
  36.  
  37. MANPAGES =    ksh.1
  38.  
  39. all:        ksh
  40.  
  41. ksh:        libs
  42.         @( cd sh ; $(MAKE) $@ )
  43.  
  44. libs:
  45. #        @( cd std ; $(MAKE) $@ )
  46.  
  47. install:
  48.         $(INSTALL_DATA) -c $(srcdir)/ksh.1 $(mandir)/ksh.1
  49.         @( cd sh ; $(MAKE) $@ )
  50.  
  51. clean clobber:
  52. #        @( cd std ; $(MAKE) $@ )
  53.         @( cd sh ; $(MAKE) $@ )
  54.         -rm -f *.out
  55.