Skip to content

Commit

Permalink
Fixed bug #436
Browse files Browse the repository at this point in the history
The install-lib target should depend on the libraries that are built.
  • Loading branch information
slouken committed Jul 5, 2007
1 parent b22f959 commit bc268ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.in
Expand Up @@ -90,7 +90,7 @@ install-hdrs:
$(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)
Expand Down

0 comments on commit bc268ce

Please sign in to comment.