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