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.

63 lines
1.8 KiB

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. datadir = @datadir@
  8. libdir = @libdir@
  9. includedir = @includedir@
  10. mandir = @mandir@
  11. # Programs used by "make":
  12. CC = @CC@
  13. CFLAGS = @CFLAGS@
  14. RM = rm -f
  15. @SET_MAKE@
  16. #### End of system configuration section. ####
  17. SHELL = /bin/sh
  18. all : force
  19. if test -f gmp/Makefile; then cd gmp && $(MAKE) mpn/libmpn.la mp_clz_tab.lo CC='$(CC)' CFLAGS='$(CFLAGS)' LIBTOOL=../libtool; fi
  20. cd @subdir@; $(MAKE) all
  21. install : force
  22. cd @subdir@; $(MAKE) install
  23. installdirs : force
  24. cd @subdir@; $(MAKE) installdirs
  25. uninstall : force
  26. cd @subdir@; $(MAKE) uninstall
  27. check : force
  28. cd @subdir@; $(MAKE) check
  29. mostlyclean : force
  30. if test -f gmp/Makefile; then cd gmp; $(MAKE) mostlyclean; fi
  31. cd @subdir@; $(MAKE) mostlyclean
  32. clean : force
  33. if test -f gmp/Makefile; then cd gmp; $(MAKE) clean; fi
  34. cd @subdir@; $(MAKE) clean
  35. distclean : force
  36. if test -f gmp/Makefile; then cd gmp; $(MAKE) distclean; fi
  37. cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
  38. $(RM) config.status config.log config.cache Makefile
  39. $(RM) libtool
  40. $(RM) include/cl_config.h include/cl_intparam.h include/cl_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
  41. maintainer-clean : force
  42. if test -f gmp/Makefile; then cd gmp; $(MAKE) maintainer-clean; fi
  43. cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
  44. $(RM) config.status config.log config.cache Makefile
  45. $(RM) libtool
  46. $(RM) include/cl_config.h include/cl_intparam.h include/cl_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
  47. force :