X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=Makefile.in;h=1331aadb142066563b217ef3be4f2bcbcfed3e24;hb=ec25de1e6ca125433a2dbd7f6f85fb09c16c2743;hp=da142f51714d14f988bc0d8ecb898e0842a188ff;hpb=bea22589e57cf39e779ca7c4999c0ea30d0674fc;p=cln.git diff --git a/Makefile.in b/Makefile.in index da142f5..1331aad 100644 --- a/Makefile.in +++ b/Makefile.in @@ -6,7 +6,9 @@ prefix = @prefix@ local_prefix = /usr/local exec_prefix = @exec_prefix@ +srcdir = @srcdir@ bindir = @bindir@ +datarootdir = @datarootdir@ datadir = @datadir@ libdir = @libdir@ includedir = @includedir@ @@ -17,59 +19,56 @@ DESTDIR = CC = @CC@ CFLAGS = @CFLAGS@ RM = rm -f +MKDIR = mkdir -p @SET_MAKE@ INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_DATA = @INSTALL_DATA@ -UNINSTALL_PROGRAM = @UNINSTALL_PROGRAM@ #### End of system configuration section. #### SHELL = /bin/sh all : force - cd @subdir@; $(MAKE) all + cd @subdir@ && ${MAKE} all install : installdirs force - cd @subdir@; $(MAKE) install - $(INSTALL_PROGRAM) cln-config $(DESTDIR)$(bindir)/cln-config - $(INSTALL_DATA) cln-config.1 $(DESTDIR)$(mandir)/man1/cln-config.1 - $(INSTALL_DATA) cln.m4 $(DESTDIR)$(datadir)/aclocal/cln.m4 + cd @subdir@ && ${MAKE} install + ${INSTALL_DATA} cln.pc ${DESTDIR}${libdir}/pkgconfig/cln.pc installdirs : force - cd @subdir@; $(MAKE) installdirs - if [ ! -d $(DESTDIR)$(mandir) ] ; then mkdir $(DESTDIR)$(mandir) ; fi - if [ ! -d $(DESTDIR)$(mandir)/man1 ] ; then mkdir $(DESTDIR)$(mandir)/man1 ; fi - if [ ! -d $(DESTDIR)$(datadir)/aclocal ] ; then mkdir $(DESTDIR)$(datadir)/aclocal ; fi - if [ ! -d $(DESTDIR)$(bindir) ] ; then mkdir $(DESTDIR)$(bindir) ; fi + cd @subdir@ && ${MAKE} installdirs + ${MKDIR} ${DESTDIR}${mandir}/man1 + ${MKDIR} ${DESTDIR}${datadir}/aclocal + ${MKDIR} ${DESTDIR}${bindir} + ${MKDIR} ${DESTDIR}${libdir}/pkgconfig uninstall : force - cd @subdir@; $(MAKE) uninstall - $(RM) $(DESTDIR)$(bindir)/cln-config - $(RM) $(DESTDIR)$(mandir)/man1/cln-config.1 - $(RM) $(DESTDIR)$(datadir)/aclocal/cln.m4 + cd @subdir@ && ${MAKE} uninstall + ${RM} ${DESTDIR}${libdir}/pkgconfig/cln.pc check : force - cd @subdir@; $(MAKE) check + cd @subdir@ && ${MAKE} check mostlyclean : force - cd @subdir@; $(MAKE) mostlyclean + cd @subdir@ && ${MAKE} mostlyclean clean : force - cd @subdir@; $(MAKE) clean + 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 + cd @subdir@ && if test -f Makefile; then ${MAKE} distclean; fi + ${RM} config.status config.log config.cache Makefile + ${RM} cln.pc + ${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 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 + cd @subdir@ && if test -f Makefile; then ${MAKE} maintainer-clean; fi + ${RM} config.status config.log config.cache Makefile + ${RM} cln.spec cln.pc + ${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 :