]> www.ginac.de Git - cln.git/blob - Makefile.in
- src/float/lfloat/algebraic/cl_LF_sqrt.cc, src/base/digitseq/cl_DS_sqrt.cc:
[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 datadir = @datadir@
10 libdir = @libdir@
11 includedir = @includedir@
12 mandir = @mandir@
13
14 # Programs used by "make":
15 CC = @CC@
16 CFLAGS = @CFLAGS@
17 RM = rm -f
18 @SET_MAKE@
19
20 #### End of system configuration section. ####
21
22 SHELL = /bin/sh
23
24 all : force
25         cd @subdir@; $(MAKE) all
26
27 install : force
28         cd @subdir@; $(MAKE) install
29
30 installdirs : force
31         cd @subdir@; $(MAKE) installdirs
32
33 uninstall : force
34         cd @subdir@; $(MAKE) uninstall
35
36 check : force
37         cd @subdir@; $(MAKE) check
38
39 mostlyclean : force
40         cd @subdir@; $(MAKE) mostlyclean
41
42 clean : force
43         cd @subdir@; $(MAKE) clean
44
45 distclean : force
46         cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
47         $(RM) config.status config.log config.cache Makefile
48         $(RM) libtool
49         $(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
50
51 maintainer-clean : force
52         cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
53         $(RM) config.status config.log config.cache Makefile
54         $(RM) libtool
55         $(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
56
57 force :
58