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
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
  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. # Programs used by "make":
  13. CC = @CC@
  14. CFLAGS = @CFLAGS@
  15. RM = rm -f
  16. @SET_MAKE@
  17. INSTALL = @INSTALL@
  18. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  19. INSTALL_DATA = @INSTALL_DATA@
  20. UNINSTALL_PROGRAM = @UNINSTALL_PROGRAM@
  21. #### End of system configuration section. ####
  22. SHELL = /bin/sh
  23. all : force
  24. cd @subdir@; $(MAKE) all
  25. install : installdirs force
  26. cd @subdir@; $(MAKE) install
  27. $(INSTALL_PROGRAM) cln-config $(bindir)/cln-config
  28. $(INSTALL_DATA) cln-config.1 $(mandir)/man1/cln-config.1
  29. $(INSTALL_DATA) cln.m4 $(datadir)/aclocal/cln.m4
  30. installdirs : force
  31. cd @subdir@; $(MAKE) installdirs
  32. if [ ! -d $(mandir) ] ; then mkdir $(mandir) ; fi
  33. if [ ! -d $(mandir)/man1 ] ; then mkdir $(mandir)/man1 ; fi
  34. if [ ! -d $(datadir)/aclocal ] ; then mkdir $(datadir)/aclocal ; fi
  35. if [ ! -d $(bindir) ] ; then mkdir $(bindir) ; fi
  36. uninstall : force
  37. cd @subdir@; $(MAKE) uninstall
  38. $(RM) $(bindir)/cln-config
  39. $(RM) $(mandir)/man1/cln-config.1
  40. $(RM) $(datadir)/aclocal/cln.m4
  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-config cln-config.1 cln.spec
  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-config cln-config.1 cln.spec
  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 :