%% "S kris" <[EMAIL PROTECTED]> writes:
sk> How to invoke an executable file from the Makefile? For example, I
sk> have an executable file "simple" in my system, how to invoke and
sk> run this file from the Makefile?
I don't know what you mean. Make invokes commands to update targets.
Given a makefile like this:
foo:
simple
if the file "foo" does not exist, then make will run the program
"simple" (which it expects to generate/update the file "foo").
Please read the GNU make manual, which is available both online and
comes with the GNU make source distributions, to learn more about how
make works and what it does.
--
-------------------------------------------------------------------------------
Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at:
http://www.gnu.org http://make.paulandlesley.org
"Please remain calm...I may be mad, but I am a professional." --Mad Scientist
_______________________________________________
Help-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/help-make