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.

58 lines
1.4 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. cd @subdir@; $(MAKE) all
  20. install : force
  21. cd @subdir@; $(MAKE) install
  22. installdirs : force
  23. cd @subdir@; $(MAKE) installdirs
  24. uninstall : force
  25. cd @subdir@; $(MAKE) uninstall
  26. check : force
  27. cd @subdir@; $(MAKE) check
  28. mostlyclean : force
  29. cd @subdir@; $(MAKE) mostlyclean
  30. clean : force
  31. cd @subdir@; $(MAKE) clean
  32. distclean : force
  33. cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
  34. $(RM) config.status config.log config.cache Makefile
  35. $(RM) libtool
  36. $(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
  37. maintainer-clean : force
  38. cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
  39. $(RM) config.status config.log config.cache Makefile
  40. $(RM) libtool
  41. $(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
  42. force :