]> www.ginac.de Git - cln.git/blob - Makefile.in
12facc7b1ff09e93ad25106efe374a0ac24f337f
[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 bindir = @bindir@
10 datadir = @datadir@
11 libdir = @libdir@
12 includedir = @includedir@
13 mandir = @mandir@
14
15 # Programs used by "make":
16 CC = @CC@
17 CFLAGS = @CFLAGS@
18 RM = rm -f
19 @SET_MAKE@
20 INSTALL = @INSTALL@
21 INSTALL_PROGRAM = @INSTALL_PROGRAM@
22 INSTALL_DATA = @INSTALL_DATA@
23 UNINSTALL_PROGRAM = @UNINSTALL_PROGRAM@
24
25 #### End of system configuration section. ####
26
27 SHELL = /bin/sh
28
29 all : force
30         cd @subdir@; $(MAKE) all
31
32 install : installdirs force
33         cd @subdir@; $(MAKE) install
34         $(INSTALL_PROGRAM) cln-config $(bindir)/cln-config
35         $(INSTALL_DATA) cln-config.1 $(mandir)/man1/cln-config.1
36
37 installdirs : force
38         cd @subdir@; $(MAKE) installdirs
39         if [ ! -d $(mandir) ] ; then mkdir $(mandir) ; fi
40         if [ ! -d $(mandir)/man1 ] ; then mkdir $(mandir)/man1 ; fi
41         if [ ! -d $(bindir) ] ; then mkdir $(bindir) ; fi
42
43 uninstall : force
44         cd @subdir@; $(MAKE) uninstall
45         $(RM) $(bindir)/cln-config
46         $(RM) $(mandir)/man1/cln-config.1
47
48 check : force
49         cd @subdir@; $(MAKE) check
50
51 mostlyclean : force
52         cd @subdir@; $(MAKE) mostlyclean
53
54 clean : force
55         cd @subdir@; $(MAKE) clean
56
57 distclean : force
58         cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
59         $(RM) config.status config.log config.cache Makefile
60         $(RM) cln-config cln-config.1 cln.spec
61         $(RM) libtool
62         $(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
63
64 maintainer-clean : force
65         cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
66         $(RM) config.status config.log config.cache Makefile
67         $(RM) cln-config
68         $(RM) libtool
69         $(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
70
71 force :