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.

74 lines
1.9 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_DATA} cln.pc ${DESTDIR}${libdir}/pkgconfig/cln.pc
  32. installdirs : force
  33. cd @subdir@ && ${MAKE} installdirs
  34. ${MKDIR} ${DESTDIR}${mandir}/man1
  35. ${MKDIR} ${DESTDIR}${datadir}/aclocal
  36. ${MKDIR} ${DESTDIR}${bindir}
  37. ${MKDIR} ${DESTDIR}${libdir}/pkgconfig
  38. uninstall : force
  39. cd @subdir@ && ${MAKE} uninstall
  40. ${RM} ${DESTDIR}${libdir}/pkgconfig/cln.pc
  41. check : force
  42. cd @subdir@ && ${MAKE} check
  43. mostlyclean : force
  44. cd @subdir@ && ${MAKE} mostlyclean
  45. clean : force
  46. cd @subdir@ && ${MAKE} clean
  47. distclean : force
  48. cd @subdir@ && if test -f Makefile; then ${MAKE} distclean; fi
  49. ${RM} config.status config.log config.cache Makefile
  50. ${RM} cln.pc
  51. ${RM} libtool
  52. ${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
  53. maintainer-clean : force
  54. cd @subdir@ && if test -f Makefile; then ${MAKE} maintainer-clean; fi
  55. ${RM} config.status config.log config.cache Makefile
  56. ${RM} cln.spec 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. force :