| 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. #### |
| 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 |
| 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 |
|
|