/[cln]/Makefile.in
ViewVC logotype

Contents of /Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.13.2.1 - (show annotations)
Sun Aug 6 14:14:03 2006 UTC (6 years, 9 months ago) by kreckel
Branch: cln_1-1
CVS Tags: cln_1-1-13, cln_1-1-12
Changes since 1.13: +1 -0 lines
        * Apply patch for autoconf-2.60:
        2006-04-25  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
                * Makefile.in (datarootdir): New variable.
                * src/Makefile.in (datarootdir): New variable.
                * doc/Makefile.in (datarootdir): New variable.

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 srcdir = @srcdir@
10 bindir = @bindir@
11 datarootdir = @datarootdir@
12 datadir = @datadir@
13 libdir = @libdir@
14 includedir = @includedir@
15 mandir = @mandir@
16 DESTDIR =
17
18 # Programs used by "make":
19 CC = @CC@
20 CFLAGS = @CFLAGS@
21 RM = rm -f
22 MKDIR = mkdir -p
23 @SET_MAKE@
24 INSTALL = @INSTALL@
25 INSTALL_PROGRAM = @INSTALL_PROGRAM@
26 INSTALL_SCRIPT = @INSTALL_SCRIPT@
27 INSTALL_DATA = @INSTALL_DATA@
28
29 #### End of system configuration section. ####
30
31 SHELL = /bin/sh
32
33 all : force
34 cd @subdir@ && $(MAKE) all
35
36 install : installdirs force
37 cd @subdir@ && $(MAKE) install
38 $(INSTALL_SCRIPT) cln-config $(DESTDIR)$(bindir)/cln-config
39 $(INSTALL_DATA) cln-config.1 $(DESTDIR)$(mandir)/man1/cln-config.1
40 $(INSTALL_DATA) ${srcdir}/cln.m4 ${DESTDIR}${datadir}/aclocal/cln.m4
41 $(INSTALL_DATA) cln.pc $(DESTDIR)$(libdir)/pkgconfig/cln.pc
42
43 installdirs : force
44 cd @subdir@ && $(MAKE) installdirs
45 $(MKDIR) $(DESTDIR)$(mandir)/man1
46 $(MKDIR) $(DESTDIR)$(datadir)/aclocal
47 $(MKDIR) $(DESTDIR)$(bindir)
48 $(MKDIR) $(DESTDIR)$(libdir)/pkgconfig
49
50 uninstall : force
51 cd @subdir@ && $(MAKE) uninstall
52 $(RM) $(DESTDIR)$(bindir)/cln-config
53 $(RM) $(DESTDIR)$(mandir)/man1/cln-config.1
54 $(RM) $(DESTDIR)$(datadir)/aclocal/cln.m4
55 $(RM) $(DESTDIR)$(libdir)/pkgconfig/cln.pc
56
57 check : force
58 cd @subdir@ && $(MAKE) check
59
60 mostlyclean : force
61 cd @subdir@ && $(MAKE) mostlyclean
62
63 clean : force
64 cd @subdir@ && $(MAKE) clean
65
66 distclean : force
67 cd @subdir@ && if test -f Makefile; then $(MAKE) distclean; fi
68 $(RM) config.status config.log config.cache Makefile
69 $(RM) cln-config cln-config.1 cln.pc
70 $(RM) libtool
71 $(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
72
73 maintainer-clean : force
74 cd @subdir@ && if test -f Makefile; then $(MAKE) maintainer-clean; fi
75 $(RM) config.status config.log config.cache Makefile
76 $(RM) cln-config cln-config.1 cln.spec cln.pc
77 $(RM) libtool
78 $(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
79
80 force :

Christian Bauer">Christian Bauer
ViewVC Help
Powered by ViewVC 1.1.15