diff options
Diffstat (limited to 'winsup/mingw/Makefile.in')
-rw-r--r-- | winsup/mingw/Makefile.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/winsup/mingw/Makefile.in b/winsup/mingw/Makefile.in index d2f384ca1..5f357602a 100644 --- a/winsup/mingw/Makefile.in +++ b/winsup/mingw/Makefile.in @@ -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 |