]> www.ginac.de Git - cln.git/blob - Makefile.in
install library as program, not as data
[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         $(INSTALL_DATA) cln.pc $(DESTDIR)$(libdir)/pkgconfig/cln.pc
40
41 installdirs : force
42         cd @subdir@; $(MAKE) installdirs
43         $(MKDIR) $(DESTDIR)$(mandir)/man1
44         $(MKDIR) $(DESTDIR)$(datadir)/aclocal
45         $(MKDIR) $(DESTDIR)$(bindir)
46         $(MKDIR) $(DESTDIR)$(libdir)/pkgconfig
47
48 uninstall : force
49         cd @subdir@; $(MAKE) uninstall
50         $(RM) $(DESTDIR)$(bindir)/cln-config
51         $(RM) $(DESTDIR)$(mandir)/man1/cln-config.1
52         $(RM) $(DESTDIR)$(datadir)/aclocal/cln.m4
53         $(RM) $(DESTDIR)$(libdir)/pkgconfig/cln.pc
54
55 check : force
56         cd @subdir@; $(MAKE) check
57
58 mostlyclean : force
59         cd @subdir@; $(MAKE) mostlyclean
60
61 clean : force
62         cd @subdir@; $(MAKE) clean
63
64 distclean : force
65         cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
66         $(RM) config.status config.log config.cache Makefile
67         $(RM) cln-config cln-config.1 cln.spec cln.pc
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 maintainer-clean : force
72         cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
73         $(RM) config.status config.log config.cache Makefile
74         $(RM) cln-config cln-config.1 cln.spec cln.pc
75         $(RM) libtool
76         $(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
77
78 force :