Mercurial > sdl-ios-xcode
comparison Makefile.in @ 2151:1e0692271600
Fixed bug #436
The install-lib target should depend on the libraries that are built.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 05 Jul 2007 06:35:40 +0000 |
parents | 9c9c49b18693 |
children | cd041eb7eb4a |
comparison
equal
deleted
inserted
replaced
2150:abbe2c1dcf0a | 2151:1e0692271600 |
---|---|
88 $(SHELL) $(auxdir)/mkinstalldirs $(includedir)/SDL | 88 $(SHELL) $(auxdir)/mkinstalldirs $(includedir)/SDL |
89 for file in $(HDRS); do \ | 89 for file in $(HDRS); do \ |
90 $(INSTALL) -m 644 $(srcdir)/include/$$file $(includedir)/SDL/$$file; \ | 90 $(INSTALL) -m 644 $(srcdir)/include/$$file $(includedir)/SDL/$$file; \ |
91 done | 91 done |
92 $(INSTALL) -m 644 include/SDL_config.h $(includedir)/SDL/SDL_config.h | 92 $(INSTALL) -m 644 include/SDL_config.h $(includedir)/SDL/SDL_config.h |
93 install-lib: | 93 install-lib: $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) |
94 $(SHELL) $(auxdir)/mkinstalldirs $(libdir) | 94 $(SHELL) $(auxdir)/mkinstalldirs $(libdir) |
95 $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(libdir)/$(TARGET) | 95 $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(libdir)/$(TARGET) |
96 $(INSTALL) -m 644 $(objects)/$(SDLMAIN_TARGET) $(libdir)/$(SDLMAIN_TARGET) | 96 $(INSTALL) -m 644 $(objects)/$(SDLMAIN_TARGET) $(libdir)/$(SDLMAIN_TARGET) |
97 $(RANLIB) $(libdir)/$(SDLMAIN_TARGET) | 97 $(RANLIB) $(libdir)/$(SDLMAIN_TARGET) |
98 install-data: | 98 install-data: |