We are currently migrating Bugzilla to GitHub issues.
Any changes made to the bug tracker now will be lost, so please do not post new bugs or make changes to them.
When we're done, all bug URLs will redirect to their equivalent location on the new bug tracker.

Bug 436

Summary: install targets lack dependencies
Product: SDL Reporter: Mike Frysinger <vapier>
Component: buildAssignee: Sam Lantinga <slouken>
Status: RESOLVED FIXED QA Contact: Sam Lantinga <slouken>
Severity: minor    
Priority: P2    
Version: HG 1.2   
Hardware: x86   
OS: All   

Description Mike Frysinger 2007-06-12 13:06:13 UTC
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 ...
Comment 1 Sam Lantinga 2007-07-04 23:36:59 UTC
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!