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.

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