| 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@ |
| 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 |
|
|
| 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 |
| 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 : |
|
|
|