You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.7 KiB

25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
  1. # Makefile for cln
  2. #### Start of system configuration section. ####
  3. # Directories used by "make install":
  4. prefix = @prefix@
  5. local_prefix = /usr/local
  6. exec_prefix = @exec_prefix@
  7. bindir = @bindir@
  8. datadir = @datadir@
  9. libdir = @libdir@
  10. includedir = @includedir@
  11. mandir = @mandir@
  12. # Programs used by "make":
  13. CC = @CC@
  14. CFLAGS = @CFLAGS@
  15. RM = rm -f
  16. @SET_MAKE@
  17. INSTALL = @INSTALL@
  18. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  19. UNINSTALL_PROGRAM = @UNINSTALL_PROGRAM@
  20. #### End of system configuration section. ####
  21. SHELL = /bin/sh
  22. all : force
  23. cd @subdir@; $(MAKE) all
  24. install : force
  25. cd @subdir@; $(MAKE) install
  26. if [ ! -d $(bindir) ] ; then mkdir $(bindir) ; fi
  27. $(INSTALL_PROGRAM) cln-config $(bindir)/cln-config
  28. installdirs : force
  29. cd @subdir@; $(MAKE) installdirs
  30. if [ ! -d $(bindir) ] ; then mkdir $(bindir) ; fi
  31. uninstall : force
  32. cd @subdir@; $(MAKE) uninstall
  33. $(RM) $(bindir)/cln-config
  34. check : force
  35. cd @subdir@; $(MAKE) check
  36. mostlyclean : force
  37. cd @subdir@; $(MAKE) mostlyclean
  38. clean : force
  39. cd @subdir@; $(MAKE) clean
  40. distclean : force
  41. cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
  42. $(RM) config.status config.log config.cache Makefile
  43. $(RM) cln-config
  44. $(RM) libtool
  45. $(RM) include/cln/config.h include/cln/intparam.h include/cln/floatparam.h src/base/cl_base_config.h src/base/cl_gmpconfig.h src/float/cl_float_config.h src/timing/cl_t_config.h
  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. $(RM) cln-config
  50. $(RM) libtool
  51. $(RM) include/cln/config.h include/cln/intparam.h include/cln/floatparam.h src/base/cl_base_config.h src/base/cl_gmpconfig.h src/float/cl_float_config.h src/timing/cl_t_config.h
  52. force :