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.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
  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. @SET_MAKE@
  18. INSTALL = @INSTALL@
  19. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  20. INSTALL_DATA = @INSTALL_DATA@
  21. UNINSTALL_PROGRAM = @UNINSTALL_PROGRAM@
  22. #### End of system configuration section. ####
  23. SHELL = /bin/sh
  24. all : force
  25. cd @subdir@; $(MAKE) all
  26. install : installdirs force
  27. cd @subdir@; $(MAKE) install
  28. $(INSTALL_PROGRAM) cln-config $(DESTDIR)$(bindir)/cln-config
  29. $(INSTALL_DATA) cln-config.1 $(DESTDIR)$(mandir)/man1/cln-config.1
  30. $(INSTALL_DATA) cln.m4 $(DESTDIR)$(datadir)/aclocal/cln.m4
  31. installdirs : force
  32. cd @subdir@; $(MAKE) installdirs
  33. if [ ! -d $(DESTDIR)$(mandir) ] ; then mkdir $(DESTDIR)$(mandir) ; fi
  34. if [ ! -d $(DESTDIR)$(mandir)/man1 ] ; then mkdir $(DESTDIR)$(mandir)/man1 ; fi
  35. if [ ! -d $(DESTDIR)$(datadir)/aclocal ] ; then mkdir $(DESTDIR)$(datadir)/aclocal ; fi
  36. if [ ! -d $(DESTDIR)$(bindir) ] ; then mkdir $(DESTDIR)$(bindir) ; fi
  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 :