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 - install targets lack dependencies
Summary: install targets lack dependencies
Status: RESOLVED FIXED
Alias: None
Product: SDL
Classification: Unclassified
Component: build (show other bugs)
Version: HG 1.2
Hardware: x86 All
: P2 minor
Assignee: Sam Lantinga
QA Contact: Sam Lantinga
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-06-12 13:06 UTC by Mike Frysinger
Modified: 2007-07-04 23:36 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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!