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.

48 lines
1.3 KiB

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 gzip. Excellent performance.
  7. PACK = tar
  8. PACKOPT = cvfhz
  9. PACKEXT = .tar.z
  10. all : configures documentation
  11. CONFIGURES = configure
  12. CONFIGURES_IN = configure.in
  13. AUTOCONF_FILES = autoconf/aclocal.m4 autoconf/acgeneral.m4 autoconf/acspecific.m4
  14. configures : $(CONFIGURES)
  15. configure : configure.in $(AUTOCONF_FILES)
  16. autoconf/autoconf -m autoconf
  17. # ACLOCAL = /home/bruno/clisp/src/autoconf/aclocal.m4
  18. # ACSELECT = /home/bruno/clisp/src/autoconf/acselect
  19. # OTHERMACROS = /home/bruno/clisp/src/autoconf/libtool.m4
  20. ACLOCAL = /home/kreckel/contrib/src/clisp/src/autoconf/aclocal.m4
  21. ACSELECT = /home/kreckel/contrib/src/clisp/src/autoconf/acselect
  22. OTHERMACROS = /home/kreckel/contrib/src/clisp/src/autoconf/libtool.m4
  23. autoconf/aclocal.m4 : $(ACLOCAL)
  24. ($(ACSELECT) `cat $(CONFIGURES_IN) | grep '^[A-Z][A-Z]_' | sed 's,[^A-Z_].*$$,,g' | sort | uniq` < $(ACLOCAL) ; cat $(OTHERMACROS) | sed -e 's,AC_CANONICAL_HOST,CL_CANONICAL_HOST,g' -e 's,AC_PROG_RANLIB,CL_PROG_RANLIB,g') > autoconf/aclocal.m4
  25. # Syntaxcheck
  26. check-configures : $(CONFIGURES)
  27. set -e; for f in $(CONFIGURES); do bash -x -n $$f; done
  28. documentation : force
  29. cd doc && $(MAKE) -f Makefile.devel documentation
  30. force :