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.

79 lines
2.2 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
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. srcdir = @srcdir@
  8. bindir = @bindir@
  9. datadir = @datadir@
  10. libdir = @libdir@
  11. includedir = @includedir@
  12. mandir = @mandir@
  13. DESTDIR =
  14. # Programs used by "make":
  15. CC = @CC@
  16. CFLAGS = @CFLAGS@
  17. RM = rm -f
  18. MKDIR = mkdir -p
  19. @SET_MAKE@
  20. INSTALL = @INSTALL@
  21. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  22. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  23. INSTALL_DATA = @INSTALL_DATA@
  24. #### End of system configuration section. ####
  25. SHELL = /bin/sh
  26. all : force
  27. cd @subdir@ && $(MAKE) all
  28. install : installdirs force
  29. cd @subdir@ && $(MAKE) install
  30. $(INSTALL_SCRIPT) cln-config $(DESTDIR)$(bindir)/cln-config
  31. $(INSTALL_DATA) cln-config.1 $(DESTDIR)$(mandir)/man1/cln-config.1
  32. $(INSTALL_DATA) ${srcdir}/cln.m4 ${DESTDIR}${datadir}/aclocal/cln.m4
  33. $(INSTALL_DATA) cln.pc $(DESTDIR)$(libdir)/pkgconfig/cln.pc
  34. installdirs : force
  35. cd @subdir@ && $(MAKE) installdirs
  36. $(MKDIR) $(DESTDIR)$(mandir)/man1
  37. $(MKDIR) $(DESTDIR)$(datadir)/aclocal
  38. $(MKDIR) $(DESTDIR)$(bindir)
  39. $(MKDIR) $(DESTDIR)$(libdir)/pkgconfig
  40. uninstall : force
  41. cd @subdir@ && $(MAKE) uninstall
  42. $(RM) $(DESTDIR)$(bindir)/cln-config
  43. $(RM) $(DESTDIR)$(mandir)/man1/cln-config.1
  44. $(RM) $(DESTDIR)$(datadir)/aclocal/cln.m4
  45. $(RM) $(DESTDIR)$(libdir)/pkgconfig/cln.pc
  46. check : force
  47. cd @subdir@ && $(MAKE) check
  48. mostlyclean : force
  49. cd @subdir@ && $(MAKE) mostlyclean
  50. clean : force
  51. cd @subdir@ && $(MAKE) clean
  52. distclean : force
  53. cd @subdir@ && if test -f Makefile; then $(MAKE) distclean; fi
  54. $(RM) config.status config.log config.cache Makefile
  55. $(RM) cln-config cln-config.1 cln.pc
  56. $(RM) libtool
  57. $(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
  58. maintainer-clean : force
  59. cd @subdir@ && if test -f Makefile; then $(MAKE) maintainer-clean; fi
  60. $(RM) config.status config.log config.cache Makefile
  61. $(RM) cln-config cln-config.1 cln.spec cln.pc
  62. $(RM) libtool
  63. $(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
  64. force :