]> www.ginac.de Git - cln.git/blobdiff - Makefile.in
Remove support for K&R C compilers.
[cln.git] / Makefile.in
index 0e36aa6d70eb5e9a3d02a1cec8112949512cc290..1331aadb142066563b217ef3be4f2bcbcfed3e24 100644 (file)
@@ -6,53 +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@
 
 #### End of system configuration section. ####
 
 SHELL = /bin/sh
 
 all : force
-       cd @subdir@; $(MAKE) all
+       cd @subdir@ && ${MAKE} all
 
-install : force
-       cd @subdir@; $(MAKE) install
+install : installdirs force
+       cd @subdir@ && ${MAKE} install
+       ${INSTALL_DATA} cln.pc ${DESTDIR}${libdir}/pkgconfig/cln.pc
 
 installdirs : force
-       cd @subdir@; $(MAKE) installdirs
+       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
+       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) libtool
-       $(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
+       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) libtool
-       $(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
+       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 :
-