/[cln]/Makefile.in
ViewVC logotype

Contents of /Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.16 - (show annotations)
Wed Sep 19 00:00:39 2007 UTC (5 years, 8 months ago) by kreckel
Branch: MAIN
CVS Tags: cln_1-2-2, cln_1-2-0, cln_1-2-1, HEAD
Changes since 1.15: +2 -8 lines
        * doc/cln.tex: Put entire document in @dircategory Mathematics.
        * doc/Makefile.in: texi2html -split_chapter suddenly uses subdirectory.
        * Makefile.in: Don't install non-existing cln-config* and cln.m4.

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_DATA} cln.pc ${DESTDIR}${libdir}/pkgconfig/cln.pc
39
40 installdirs : force
41 cd @subdir@ && ${MAKE} installdirs
42 ${MKDIR} ${DESTDIR}${mandir}/man1
43 ${MKDIR} ${DESTDIR}${datadir}/aclocal
44 ${MKDIR} ${DESTDIR}${bindir}
45 ${MKDIR} ${DESTDIR}${libdir}/pkgconfig
46
47 uninstall : force
48 cd @subdir@ && ${MAKE} uninstall
49 ${RM} ${DESTDIR}${libdir}/pkgconfig/cln.pc
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.pc
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.spec cln.pc
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 :

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