# Makefile for cln #### Start of system configuration section. #### # Directories used by "make install": prefix = @prefix@ local_prefix = /usr/local exec_prefix = @exec_prefix@ bindir = @bindir@ datadir = @datadir@ libdir = @libdir@ includedir = @includedir@ mandir = @mandir@ # Programs used by "make": CC = @CC@ CFLAGS = @CFLAGS@ RM = rm -f @SET_MAKE@ INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ UNINSTALL_PROGRAM = @UNINSTALL_PROGRAM@ #### End of system configuration section. #### SHELL = /bin/sh all : force cd @subdir@; $(MAKE) all install : installdirs force cd @subdir@; $(MAKE) install $(INSTALL_PROGRAM) cln-config $(bindir)/cln-config $(INSTALL_DATA) cln-config.1 $(mandir)/man1/cln-config.1 installdirs : force cd @subdir@; $(MAKE) installdirs if [ ! -d $(mandir) ] ; then mkdir $(mandir) ; fi if [ ! -d $(mandir)/man1 ] ; then mkdir $(mandir)/man1 ; fi if [ ! -d $(bindir) ] ; then mkdir $(bindir) ; fi uninstall : force cd @subdir@; $(MAKE) uninstall $(RM) $(bindir)/cln-config $(RM) $(mandir)/man1/cln-config.1 check : force cd @subdir@; $(MAKE) check mostlyclean : force cd @subdir@; $(MAKE) mostlyclean clean : force cd @subdir@; $(MAKE) clean distclean : force cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi $(RM) config.status config.log config.cache Makefile $(RM) cln-config cln-config.1 cln.spec $(RM) libtool $(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 maintainer-clean : force cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi $(RM) config.status config.log config.cache Makefile $(RM) cln-config $(RM) libtool $(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 force :