/[cln]/Makefile.in
ViewVC logotype

Contents of /Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (hide annotations)
Mon Aug 28 22:07:37 2000 UTC (12 years, 9 months ago) by kreckel
Branch: MAIN
Changes since 1.2: +12 -3 lines
        * All Files have been modified for inclusion of namespace cln;
          I am too lazy for a detailed discussion of all the changes.
          Many identifiers got their `cl_' stripped off.  Ok, this is a
          clumpsy CVS log-entry.  Promise: more will soon go into the
          file ChangeLog.  I apologize for the inconvenience.   :-(

1 kreckel 1.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 kreckel 1.3 bindir = @bindir@
10 kreckel 1.1 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 kreckel 1.3 INSTALL = @INSTALL@
21     INSTALL_PROGRAM = @INSTALL_PROGRAM@
22     UNINSTALL_PROGRAM = @UNINSTALL_PROGRAM@
23 kreckel 1.1
24     #### End of system configuration section. ####
25    
26     SHELL = /bin/sh
27    
28     all : force
29     cd @subdir@; $(MAKE) all
30    
31     install : force
32     cd @subdir@; $(MAKE) install
33 kreckel 1.3 if [ ! -d $(bindir) ] ; then mkdir $(bindir) ; fi
34     $(INSTALL_PROGRAM) cln-config $(bindir)/cln-config
35 kreckel 1.1
36     installdirs : force
37     cd @subdir@; $(MAKE) installdirs
38 kreckel 1.3 if [ ! -d $(bindir) ] ; then mkdir $(bindir) ; fi
39 kreckel 1.1
40     uninstall : force
41     cd @subdir@; $(MAKE) uninstall
42 kreckel 1.3 $(RM) $(bindir)/cln-config
43 kreckel 1.1
44     check : force
45     cd @subdir@; $(MAKE) check
46    
47     mostlyclean : force
48     cd @subdir@; $(MAKE) mostlyclean
49    
50     clean : force
51     cd @subdir@; $(MAKE) clean
52    
53     distclean : force
54     cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
55     $(RM) config.status config.log config.cache Makefile
56 kreckel 1.3 $(RM) cln-config
57 kreckel 1.1 $(RM) libtool
58 kreckel 1.3 $(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
59 kreckel 1.1
60     maintainer-clean : force
61     cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
62     $(RM) config.status config.log config.cache Makefile
63 kreckel 1.3 $(RM) cln-config
64 kreckel 1.1 $(RM) libtool
65 kreckel 1.3 $(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 kreckel 1.1
67     force :

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