vote up 3 vote down star

I have a library consisting of approx 100 source files. I want one of the sources to be always rebuilt if any of the other files have been compiled but I dont want it built every time I run the make/build.

Basically I want this file to have the last build date/time built into it so any application linking to the library can check the last build time/date. Is there any other way to do this?

flag

I think you make the rule for that file dependent on all other object files. If any other object file is newer, then your object file will be remade, so that it will be always the most recently created one. – Johannes Schaub - litb Nov 26 '08 at 12:56
can you please change the title of the question to reflect the contents of the question? – Nathan Fellman Nov 26 '08 at 13:35
Hi Nathan, not sure what title I would put on it, any suggestions? – JudgeDread Nov 26 '08 at 15:53

2 Answers

vote up 4 vote down check

To expand slightly on JesperE's solution.

Let the object file depend on all targets which the executable depends on, (excluding itself).

So if all the executable depends on is objects, then JesperE is completely correct.

Otherwise, you could rebuild the executable without updating the timestamp, in the case where one of the other dependencies changes but none of your object files does. So the two things mentioned in the question, "has the last build time/date" and "rebuilt if any of the sources has been compiled", aren't actually the same thing, so it depends which you want.

Examples could include a library you statically link against, or some script which is used to do the linking and which changes a lot so has been made a dependency for the convenience of developers.

This still won't update the timestamp if you just delete the executable and rebuild it (perhaps because something has changed which is relevant, but not a dependency, such as because you've grabbed the latest version of the linker or you've changed something in the environment which affects the linker and/or the makefile). So the best thing to do might be to compile the object as part of the rule for building the executable, like this:

blah.exe : whatever
    rm -f version.o
    $(CC) $(CFLAGS) -c version.c
    $(CC) $(CFLAGS) $(OBJFILES) version.o -o blah.exe

or whatever (probably not .exe if you're using make, but you never know). Actually the error-handling there is a bit dodgy, since version.o won't be deleted if the last line fails.

I'd also add that if you're going to release something to users (by which I mean basically anyone more than 10 feet from your desk), it might be an idea to build from scratch anyway rather than just run make to update, and ship it. It's pretty easy otherwise to screw up the makefile so that you miss a dependency, accidentally build a "mixed version", and have no way to reproduce what you shipped.

I've jiggered makefiles before so that the version number was deliberately sabotaged (set to "0.0 private build") if it was built by a developer - only the build server set the option used to enable the proper version number. For that project, it just wasn't meaningful to put a number on something that wasn't checked out of source control by tags, and built from there.

link|flag
Thats good, compiles any time a link is required.... – JudgeDread Nov 26 '08 at 15:51
vote up 8 vote down

Let the object file containing the build timestamp depend on all the other object files:

version.o: $(OBJECTS)
link|flag
This is basically what I want. Now all I have to do is figure out how to get that dependency setup in Visual Studio 2005 project. – JudgeDread Nov 26 '08 at 15:49
That may turn out to be a bit more difficult... – JesperE Nov 26 '08 at 23:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.