/[cln]/Makefile.in
ViewVC logotype

Diff of /Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by kreckel, Fri May 5 17:59:15 2000 UTC revision 1.3 by kreckel, Mon Aug 28 22:07:37 2000 UTC
# Line 6  Line 6 
6  prefix = @prefix@  prefix = @prefix@
7  local_prefix = /usr/local  local_prefix = /usr/local
8  exec_prefix = @exec_prefix@  exec_prefix = @exec_prefix@
9    bindir = @bindir@
10  datadir = @datadir@  datadir = @datadir@
11  libdir = @libdir@  libdir = @libdir@
12  includedir = @includedir@  includedir = @includedir@
# Line 16  CC = @CC@ Line 17  CC = @CC@
17  CFLAGS = @CFLAGS@  CFLAGS = @CFLAGS@
18  RM = rm -f  RM = rm -f
19  @SET_MAKE@  @SET_MAKE@
20    INSTALL = @INSTALL@
21    INSTALL_PROGRAM = @INSTALL_PROGRAM@
22    UNINSTALL_PROGRAM = @UNINSTALL_PROGRAM@
23    
24  #### End of system configuration section. ####  #### End of system configuration section. ####
25    
# Line 26  all : force Line 30  all : force
30    
31  install : force  install : force
32          cd @subdir@; $(MAKE) install          cd @subdir@; $(MAKE) install
33            if [ ! -d $(bindir) ] ; then mkdir $(bindir) ; fi
34            $(INSTALL_PROGRAM) cln-config $(bindir)/cln-config
35    
36  installdirs : force  installdirs : force
37          cd @subdir@; $(MAKE) installdirs          cd @subdir@; $(MAKE) installdirs
38            if [ ! -d $(bindir) ] ; then mkdir $(bindir) ; fi
39    
40  uninstall : force  uninstall : force
41          cd @subdir@; $(MAKE) uninstall          cd @subdir@; $(MAKE) uninstall
42            $(RM) $(bindir)/cln-config
43    
44  check : force  check : force
45          cd @subdir@; $(MAKE) check          cd @subdir@; $(MAKE) check
# Line 45  clean : force Line 53  clean : force
53  distclean : force  distclean : force
54          cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi          cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
55          $(RM) config.status config.log config.cache Makefile          $(RM) config.status config.log config.cache Makefile
56            $(RM) cln-config
57          $(RM) libtool          $(RM) libtool
58          $(RM) include/cl_config.h include/cl_intparam.h include/cl_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          $(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    
60  maintainer-clean : force  maintainer-clean : force
61          cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi          cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
62          $(RM) config.status config.log config.cache Makefile          $(RM) config.status config.log config.cache Makefile
63            $(RM) cln-config
64          $(RM) libtool          $(RM) libtool
65          $(RM) include/cl_config.h include/cl_intparam.h include/cl_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          $(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  force :  force :
   

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

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