]> www.ginac.de Git - cln.git/blob - Makefile.in
Fix crashes in find_univpoly_ring and related functions
[cln.git] / Makefile.in
1 # Makefile for cln
2
3 #### Start of system configuration section. ####
4
5 # Directories used by "make install":
6 prefix = @prefix@
7 local_prefix = /usr/local
8 exec_prefix = @exec_prefix@
9 srcdir = @srcdir@
10 bindir = @bindir@
11 datadir = @datadir@
12 libdir = @libdir@
13 includedir = @includedir@
14 mandir = @mandir@
15 DESTDIR =
16
17 # Programs used by "make":
18 CC = @CC@
19 CFLAGS = @CFLAGS@
20 RM = rm -f
21 MKDIR = mkdir -p
22 @SET_MAKE@
23 INSTALL = @INSTALL@
24 INSTALL_PROGRAM = @INSTALL_PROGRAM@
25 INSTALL_SCRIPT = @INSTALL_SCRIPT@
26 INSTALL_DATA = @INSTALL_DATA@
27
28 #### End of system configuration section. ####
29
30 SHELL = /bin/sh
31
32 all : force
33         cd @subdir@; $(MAKE) all
34
35 install : installdirs force
36         cd @subdir@; $(MAKE) install
37         $(INSTALL_SCRIPT) cln-config $(DESTDIR)$(bindir)/cln-config
38         $(INSTALL_DATA) cln-config.1 $(DESTDIR)$(mandir)/man1/cln-config.1
39         $(INSTALL_DATA) ${srcdir}/cln.m4 ${DESTDIR}${datadir}/aclocal/cln.m4
40         $(INSTALL_DATA) cln.pc $(DESTDIR)$(libdir)/pkgconfig/cln.pc
41
42 installdirs : force
43         cd @subdir@; $(MAKE) installdirs
44         $(MKDIR) $(DESTDIR)$(mandir)/man1
45         $(MKDIR) $(DESTDIR)$(datadir)/aclocal
46         $(MKDIR) $(DESTDIR)$(bindir)
47         $(MKDIR) $(DESTDIR)$(libdir)/pkgconfig
48
49 uninstall : force
50         cd @subdir@; $(MAKE) uninstall
51         $(RM) $(DESTDIR)$(bindir)/cln-config
52         $(RM) $(DESTDIR)$(mandir)/man1/cln-config.1
53         $(RM) $(DESTDIR)$(datadir)/aclocal/cln.m4
54         $(RM) $(DESTDIR)$(libdir)/pkgconfig/cln.pc
55
56 check : force
57         cd @subdir@; $(MAKE) check
58
59 mostlyclean : force
60         cd @subdir@; $(MAKE) mostlyclean
61
62 clean : force
63         cd @subdir@; $(MAKE) clean
64
65 distclean : force
66         cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
67         $(RM) config.status config.log config.cache Makefile
68         $(RM) cln-config cln-config.1 cln.pc
69         $(RM) libtool
70         $(RM) include/cln/config.h include/cln/intparam.h include/cln/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
71
72 maintainer-clean : force
73         cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
74         $(RM) config.status config.log config.cache Makefile
75         $(RM) cln-config cln-config.1 cln.spec cln.pc
76         $(RM) libtool
77         $(RM) include/cln/config.h include/cln/intparam.h include/cln/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
78
79 force :