]> www.ginac.de Git - cln.git/blob - Makefile.devel
- configure.in, autoconf/aclocal.m4 (CL_GMP_H_VERSION, CL_GMP_CHECK):
[cln.git] / Makefile.devel
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
4
5 # Some important programs:
6 SHELL = /bin/sh
7 MAKE = make
8
9
10 # GNU tar together with GNU gzip. Excellent performance.
11 PACK = tar
12 PACKOPT = cvfhz
13 PACKEXT = .tar.z
14
15
16 all : configures documentation
17
18
19 CONFIGURES = configure
20 CONFIGURES_IN = configure.in
21
22 AUTOCONF_FILES = autoconf/aclocal.m4 autoconf/acgeneral.m4 autoconf/acspecific.m4
23
24 configures : $(CONFIGURES)
25
26 configure : configure.in $(AUTOCONF_FILES)
27         autoconf/autoconf -m autoconf
28
29 # # ACLOCAL = /home/bruno/clisp/src/autoconf/aclocal.m4
30 # # ACSELECT = /home/bruno/clisp/src/autoconf/acselect
31 # # OTHERMACROS = /home/bruno/clisp/src/autoconf/libtool.m4
32 # ACLOCAL = /home/kreckel/contrib/src/clisp/src/autoconf/aclocal.m4
33 # ACSELECT = /home/kreckel/contrib/src/clisp/src/autoconf/acselect
34 # OTHERMACROS = /home/kreckel/contrib/src/clisp/src/autoconf/libtool.m4
35
36 # autoconf/aclocal.m4 : $(ACLOCAL)
37 #       ($(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
38
39 # Syntaxcheck
40 check-configures : $(CONFIGURES)
41         set -e; for f in $(CONFIGURES); do bash -x -n $$f; done
42
43
44 documentation : force
45         cd doc && $(MAKE) -f Makefile.devel documentation
46
47 force :
48