]> www.ginac.de Git - cln.git/blob - Makefile.in
Initial revision
[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         if test -f gmp/Makefile; then cd gmp && $(MAKE) mpn/libmpn.la mp_clz_tab.lo CC='$(CC)' CFLAGS='$(CFLAGS)' LIBTOOL=../libtool; fi
26         cd @subdir@; $(MAKE) all
27
28 install : force
29         cd @subdir@; $(MAKE) install
30
31 installdirs : force
32         cd @subdir@; $(MAKE) installdirs
33
34 uninstall : force
35         cd @subdir@; $(MAKE) uninstall
36
37 check : force
38         cd @subdir@; $(MAKE) check
39
40 mostlyclean : force
41         if test -f gmp/Makefile; then cd gmp; $(MAKE) mostlyclean; fi
42         cd @subdir@; $(MAKE) mostlyclean
43
44 clean : force
45         if test -f gmp/Makefile; then cd gmp; $(MAKE) clean; fi
46         cd @subdir@; $(MAKE) clean
47
48 distclean : force
49         if test -f gmp/Makefile; then cd gmp; $(MAKE) distclean; fi
50         cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
51         $(RM) config.status config.log config.cache Makefile
52         $(RM) libtool
53         $(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
54
55 maintainer-clean : force
56         if test -f gmp/Makefile; then cd gmp; $(MAKE) maintainer-clean; fi
57         cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
58         $(RM) config.status config.log config.cache Makefile
59         $(RM) libtool
60         $(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
61
62 force :
63