home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / CLISP-2.LHA / CLISP960530-ki.lha / ffcall / Makefile.in < prev    next >
Encoding:
Makefile  |  1996-04-15  |  1014 b   |  52 lines

  1. # Makefile for ffcall
  2.  
  3. #### Start of system configuration section. ####
  4.  
  5. # Directories used by "make install":
  6. prefix = @prefix@
  7. local_prefix = /usr/local
  8. exec_prefix = $(prefix)
  9. libdir = $(exec_prefix)/lib
  10. includedir = $(local_prefix)/include
  11. mandir = $(exec_prefix)/man
  12.  
  13. # Programs used by "make":
  14. RM = rm -f
  15. @SET_MAKE@
  16.  
  17. #### End of system configuration section. ####
  18.  
  19. SHELL = /bin/sh
  20.  
  21. all : force
  22.     cd @subdir@; $(MAKE) all
  23.  
  24. install : force
  25.     cd @subdir@; $(MAKE) install
  26.  
  27. installdirs : force
  28.     cd @subdir@; $(MAKE) installdirs
  29.  
  30. uninstall : force
  31.     cd @subdir@; $(MAKE) uninstall
  32.  
  33. check : force
  34.     cd @subdir@; $(MAKE) check
  35.  
  36. mostlyclean : force
  37.     cd @subdir@; $(MAKE) mostlyclean
  38.  
  39. clean : force
  40.     cd @subdir@; $(MAKE) clean
  41.  
  42. distclean : force
  43.     cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
  44.     $(RM) config.status config.log config.cache Makefile
  45.  
  46. maintainer-clean : force
  47.     cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
  48.     $(RM) config.status config.log config.cache Makefile
  49.  
  50. force :
  51.  
  52.