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.

75 lines
2.1 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. installdirs : force
  33. cd @subdir@; $(MAKE) installdirs
  34. $(MKDIR) $(DESTDIR)$(mandir)/man1
  35. $(MKDIR) $(DESTDIR)$(datadir)/aclocal
  36. $(MKDIR) $(DESTDIR)$(bindir)
  37. uninstall : force
  38. cd @subdir@; $(MAKE) uninstall
  39. $(RM) $(DESTDIR)$(bindir)/cln-config
  40. $(RM) $(DESTDIR)$(mandir)/man1/cln-config.1
  41. $(RM) $(DESTDIR)$(datadir)/aclocal/cln.m4
  42. check : force
  43. cd @subdir@; $(MAKE) check
  44. mostlyclean : force
  45. cd @subdir@; $(MAKE) mostlyclean
  46. clean : force
  47. cd @subdir@; $(MAKE) clean
  48. distclean : force
  49. cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
  50. $(RM) config.status config.log config.cache Makefile
  51. $(RM) cln-config cln-config.1 cln.spec
  52. $(RM) libtool
  53. $(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
  54. maintainer-clean : force
  55. cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
  56. $(RM) config.status config.log config.cache Makefile
  57. $(RM) cln-config cln-config.1 cln.spec
  58. $(RM) libtool
  59. $(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
  60. force :