]> sourceware.org Git - newlib-cygwin.git/commitdiff
* Makefile.in: Install libstdc++.a if it does not exist.
authorChristopher Faylor <me@cgf.cx>
Wed, 5 Sep 2001 23:26:38 +0000 (23:26 +0000)
committerChristopher Faylor <me@cgf.cx>
Wed, 5 Sep 2001 23:26:38 +0000 (23:26 +0000)
winsup/mingw/ChangeLog
winsup/mingw/Makefile.in

index ba5cfa72ea41a98e46870934ce0c137ebe8da496..321273a845cf318c592464409f1d410b13a334c4 100644 (file)
@@ -1,3 +1,7 @@
+Wed Sep  5 19:24:50 2001  Christopher Faylor <cgf@cygnus.com>
+
+       * Makefile.in: Install libstdc++.a if it does not exist.
+
 2001-08-29  Danny Smith  <dannysmith@users.sourceforge.net>
 
        * include/stdarg.h (va_list): Typedef as __builtin_va_list if
index d2f384ca19c4990f860f990ef6da5795d722783c..5f357602a1d5f3a48eb7f29e12bf7e3f75e1afc8 100644 (file)
@@ -294,7 +294,7 @@ install-dirs:
        $(mkinstalldirs) $(bindir)
        $(mkinstalldirs) $(tooldir)/lib$(subdirforlib)
 
-install: all install-dirs $(install_dlls_host)
+install: all install-dirs $(install_dlls_host) $(tooldir)/lib$(subdirforlib)/libstdc++.a
        for i in $(LIBS); do \
                $(INSTALL_DATA) $$i $(tooldir)/lib$(subdirforlib)/$$i ; \
        done
@@ -310,6 +310,12 @@ install: all install-dirs $(install_dlls_host)
        done
        @$(MAKE) subdirs DO=$@ $(FLAGS_TO_PASS)
 
+$(tooldir)/lib$(subdirforlib)/libstdc++.a: libstdc++.a
+       @[ -f $? ] && cp -vp $? $@; exit 0
+
+libstdc++.a:
+       @true
+
 subdirs: $(SUBDIRS)
        @true
 
This page took 0.031307 seconds and 5 git commands to generate.