/[cln]/Makefile.in
ViewVC logotype

Diff of /Makefile.in

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

revision 1.3 by kreckel, Mon Aug 28 22:07:37 2000 UTC revision 1.4 by kreckel, Fri Nov 17 14:26:11 2000 UTC
# Line 19  RM = rm -f Line 19  RM = rm -f
19  @SET_MAKE@  @SET_MAKE@
20  INSTALL = @INSTALL@  INSTALL = @INSTALL@
21  INSTALL_PROGRAM = @INSTALL_PROGRAM@  INSTALL_PROGRAM = @INSTALL_PROGRAM@
22    INSTALL_DATA = @INSTALL_DATA@
23  UNINSTALL_PROGRAM = @UNINSTALL_PROGRAM@  UNINSTALL_PROGRAM = @UNINSTALL_PROGRAM@
24    
25  #### End of system configuration section. ####  #### End of system configuration section. ####
# Line 28  SHELL = /bin/sh Line 29  SHELL = /bin/sh
29  all : force  all : force
30          cd @subdir@; $(MAKE) all          cd @subdir@; $(MAKE) all
31    
32  install : force  install : installdirs force
33          cd @subdir@; $(MAKE) install          cd @subdir@; $(MAKE) install
         if [ ! -d $(bindir) ] ; then mkdir $(bindir) ; fi  
34          $(INSTALL_PROGRAM) cln-config $(bindir)/cln-config          $(INSTALL_PROGRAM) cln-config $(bindir)/cln-config
35            $(INSTALL_DATA) cln-config.1 $(mandir)/man1/cln-config.1
36    
37  installdirs : force  installdirs : force
38          cd @subdir@; $(MAKE) installdirs          cd @subdir@; $(MAKE) installdirs
39            if [ ! -d $(mandir) ] ; then mkdir $(mandir) ; fi
40            if [ ! -d $(mandir)/man1 ] ; then mkdir $(mandir)/man1 ; fi
41          if [ ! -d $(bindir) ] ; then mkdir $(bindir) ; fi          if [ ! -d $(bindir) ] ; then mkdir $(bindir) ; fi
42    
43  uninstall : force  uninstall : force
44          cd @subdir@; $(MAKE) uninstall          cd @subdir@; $(MAKE) uninstall
45          $(RM) $(bindir)/cln-config          $(RM) $(bindir)/cln-config
46            $(RM) $(mandir)/man1/cln-config.1
47    
48  check : force  check : force
49          cd @subdir@; $(MAKE) check          cd @subdir@; $(MAKE) check
# Line 53  clean : force Line 57  clean : force
57  distclean : force  distclean : force
58          cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi          cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
59          $(RM) config.status config.log config.cache Makefile          $(RM) config.status config.log config.cache Makefile
60          $(RM) cln-config          $(RM) cln-config cln-config.1 cln.spec
61          $(RM) libtool          $(RM) libtool
62          $(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          $(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
63    

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

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