X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=Makefile.in;h=1331aadb142066563b217ef3be4f2bcbcfed3e24;hb=a38a607fa0426f5c2782bf4c0cffe4c7684effe9;hp=2e64d21dcd1885b4230a3a02eb70524c6148695b;hpb=4a9e4c0c583b7bdb4360c624e1a005bebd8e39a9;p=cln.git diff --git a/Makefile.in b/Makefile.in index 2e64d21..1331aad 100644 --- a/Makefile.in +++ b/Makefile.in @@ -6,69 +6,69 @@ prefix = @prefix@ local_prefix = /usr/local exec_prefix = @exec_prefix@ +srcdir = @srcdir@ bindir = @bindir@ +datarootdir = @datarootdir@ datadir = @datadir@ libdir = @libdir@ includedir = @includedir@ mandir = @mandir@ +DESTDIR = # Programs used by "make": 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 $(bindir)/cln-config - $(INSTALL_DATA) cln-config.1 $(mandir)/man1/cln-config.1 - $(INSTALL_DATA) cln.m4 $(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 $(mandir) ] ; then mkdir $(mandir) ; fi - if [ ! -d $(mandir)/man1 ] ; then mkdir $(mandir)/man1 ; fi - if [ ! -d $(datadir)/aclocal ] ; then mkdir $(datadir)/aclocal ; fi - if [ ! -d $(bindir) ] ; then mkdir $(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) $(bindir)/cln-config - $(RM) $(mandir)/man1/cln-config.1 - $(RM) $(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 - $(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 :