Hi all,

how can I force make to "sort" targets that were given as arguments?

e.g. I want to type at prompt
make object obj=test copy_object
What should happen:
object gets executed and afterwards copy_object gets executed

Well yes - I could write a rule like
copy_object: object
        [....]

But this would mean that object gets executed also if I did not give it as an argument to the make command.

I don't need a general handling of the sequence of the arguments only for this special rule I want to have it executed after all other rules (also with -j - not parallelized with the other stuff.

Any ideas?

Best regards,

Erik

_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to