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.

71 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
  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. installdirs : force
  30. cd @subdir@; $(MAKE) installdirs
  31. if [ ! -d $(mandir) ] ; then mkdir $(mandir) ; fi
  32. if [ ! -d $(mandir)/man1 ] ; then mkdir $(mandir)/man1 ; fi
  33. if [ ! -d $(bindir) ] ; then mkdir $(bindir) ; fi
  34. uninstall : force
  35. cd @subdir@; $(MAKE) uninstall
  36. $(RM) $(bindir)/cln-config
  37. $(RM) $(mandir)/man1/cln-config.1
  38. check : force
  39. cd @subdir@; $(MAKE) check
  40. mostlyclean : force
  41. cd @subdir@; $(MAKE) mostlyclean
  42. clean : force
  43. cd @subdir@; $(MAKE) clean
  44. distclean : force
  45. cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
  46. $(RM) config.status config.log config.cache Makefile
  47. $(RM) cln-config cln-config.1 cln.spec
  48. $(RM) libtool
  49. $(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
  50. maintainer-clean : force
  51. cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
  52. $(RM) config.status config.log config.cache Makefile
  53. $(RM) cln-config
  54. $(RM) libtool
  55. $(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
  56. force :