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.

43 lines
828 B

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. # This is the developer's makefile, not the user's makefile.
  2. # Don't use it unless you know exactly what you do!
  3. # Some important programs:
  4. SHELL = /bin/sh
  5. MAKE = make
  6. # GNU tar together with GNU bzip2. Excellent performance.
  7. PACK = tar
  8. PACKOPT = cvfhj
  9. PACKEXT = .tar.bz2
  10. all: configures documentation
  11. CONFIGURES = configure
  12. CONFIGURES_IN = configure.ac
  13. AUTOCONF_FILES = autoconf/aclocal.m4
  14. configures: ${CONFIGURES}
  15. configure: configure.ac ${AUTOCONF_FILES}
  16. autoconf --include=autoconf
  17. CLISP_M4DIR = ~/contrib/clisp/src/m4
  18. autoconf/aclocal.m4: ${wildcard m4/*.m4}
  19. aclocal -I m4 -I ${CLISP_M4DIR} --output=autoconf/aclocal.m4
  20. # Syntaxcheck
  21. check-configures: ${CONFIGURES}
  22. set -e; for f in ${CONFIGURES}; do bash -x -n $$f; done
  23. documentation: force
  24. cd doc && ${MAKE} -f Makefile.devel documentation
  25. force: