[project @ 2005-03-02 11:06:58 by simonmar]
[ghc-hetmet.git] / distrib / Makefile-bin.in
index 9a06b94..0d28672 100644 (file)
@@ -166,10 +166,17 @@ config-pkgs ::
           echo "Done."; \
          fi; \
        done
+       @for i in $(PACKAGE_LIB_SPLICED_FILES) ""; do \
+         if test "$$i"; then \
+           echo "Creating a configured version of $$i .."; \
+          if [ -f lib/$(platform)/$$i ]; then $(MV) lib/$(platform)/$$i lib/$(platform)/$$i.bak; fi; \
+          $(SED) -e "s|\$$libdir|$(libdir)|g;s|\$$datadir|$(datadir)|g" <lib/$(platform)/$$i.bak >lib/$(platform)/$$i; \
+          fi; \
+       done
 
 in-place ::
        $(MAKE) $(MFLAGS) config-pkgs bindir=`pwd`/bin/$(platform) libdir=`pwd`/lib/$(platform) datadir=`pwd`/share
-       if test -x "./post-inplace-script" ; then \
+       @if test -x "./post-inplace-script" ; then \
                echo "Running project-specific post-inplace script ..." ; \
                ./post-inplace-script $(platform) `pwd` \
                        $(package)-$(version); \
@@ -237,7 +244,9 @@ install-libs:
        (cd lib/$(platform); find . -type f -exec sh -c '$(CP) $$0 $(libdir)/$$0' {} \; )
 
 install-datas:
-       (cd share; find . -type f -exec sh -c '$(INSTALL_DATA) $$0 $(datadir)/$$0' {} \; )
+       for i in `(cd share; find . -type f )`; do \
+          $(INSTALL_DATA) share/$$i $(datadir)/$$i; \
+       done
 
 show-install-setup:
        @echo "Install setup..."
@@ -253,7 +262,9 @@ show-install-setup:
 
 install-docs : install-dirs-docs
        if test -d share/html ; then $(CP) -r share/html/* $(htmldir) ; fi
-       if test -f share/*.ps ; then $(CP) share/*.ps $(psdir) ; fi
+       for i in share/*.ps; do \
+               $(CP) $$i $(psdir) ; \
+       done
 
 install-dirs-docs:
        $(INSTALL_DIR) $(htmldir)