| Summary: | install targets lack dependencies | ||
|---|---|---|---|
| Product: | SDL | Reporter: | Mike Frysinger <vapier> |
| Component: | build | Assignee: | Sam Lantinga <slouken> |
| Status: | RESOLVED FIXED | QA Contact: | Sam Lantinga <slouken> |
| Severity: | minor | ||
| Priority: | P2 | ||
| Version: | HG 1.2 | ||
| Hardware: | x86 | ||
| OS: | All | ||
As far as I can tell the install-lib target was the only one that had a dependency. I fixed that one for 1.2.12 and 1.3 in subversion revisions 3151 and 3152. Thanks! |
the current libsdl Makefile.in looks like: install: all install-bin install-hdrs install-lib install-data install-man install-bin: ... install-lib: ... if run in parallel, make will gladly do each of the things listed after install as separate jobs ... so it will have one child running for 'all', one child for 'install-bin', one child for ... each install target should either depend directly on thing it needs (like install-lib should depend on $(TARGET) and $(SDLMAIN_TARGET)) or just the "all" target ...