# HG changeset patch # User Sam Lantinga # Date 1183617340 0 # Node ID 1e0692271600de0e08f041ab0dc842a1641fe6bd # Parent abbe2c1dcf0ad88f6ece7780abe141dfeff28f81 Fixed bug #436 The install-lib target should depend on the libraries that are built. diff -r abbe2c1dcf0a -r 1e0692271600 Makefile.in --- a/Makefile.in Thu Jul 05 06:14:26 2007 +0000 +++ b/Makefile.in Thu Jul 05 06:35:40 2007 +0000 @@ -90,7 +90,7 @@ $(INSTALL) -m 644 $(srcdir)/include/$$file $(includedir)/SDL/$$file; \ done $(INSTALL) -m 644 include/SDL_config.h $(includedir)/SDL/SDL_config.h -install-lib: +install-lib: $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) $(SHELL) $(auxdir)/mkinstalldirs $(libdir) $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(libdir)/$(TARGET) $(INSTALL) -m 644 $(objects)/$(SDLMAIN_TARGET) $(libdir)/$(SDLMAIN_TARGET)