]> www.ginac.de Git - cln.git/blob - Makefile.in
* */*: Removed problematic stdin, stdout and stderr definitions.
[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         $(INSTALL_DATA) cln.m4 $(datadir)/aclocal/cln.m4
37
38 installdirs : force
39         cd @subdir@; $(MAKE) installdirs
40         if [ ! -d $(mandir) ] ; then mkdir $(mandir) ; fi
41         if [ ! -d $(mandir)/man1 ] ; then mkdir $(mandir)/man1 ; fi
42         if [ ! -d $(datadir)/aclocal ] ; then mkdir $(datadir)/aclocal ; fi
43         if [ ! -d $(bindir) ] ; then mkdir $(bindir) ; fi
44
45 uninstall : force
46         cd @subdir@; $(MAKE) uninstall
47         $(RM) $(bindir)/cln-config
48         $(RM) $(mandir)/man1/cln-config.1
49         $(RM) $(datadir)/aclocal/cln.m4
50
51 check : force
52         cd @subdir@; $(MAKE) check
53
54 mostlyclean : force
55         cd @subdir@; $(MAKE) mostlyclean
56
57 clean : force
58         cd @subdir@; $(MAKE) clean
59
60 distclean : force
61         cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
62         $(RM) config.status config.log config.cache Makefile
63         $(RM) cln-config cln-config.1 cln.spec
64         $(RM) libtool
65         $(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
66
67 maintainer-clean : force
68         cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
69         $(RM) config.status config.log config.cache Makefile
70         $(RM) cln-config cln-config.1 cln.spec
71         $(RM) libtool
72         $(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
73
74 force :