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.

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