Thread overview
Makefiles - can soemone post a simple example
Dec 10, 2003
Roger deBry
Dec 10, 2003
Walter
Jan 06, 2004
Keith Fuller
December 10, 2003
I can't get make to work. When I run make it tells me that the target is up to date. Obviously I have made some simple error in my makefile. Unfortunately the documentation shows no examples (that would be nice). Can someone post a simple example, say for a hello world program? Thanks


December 10, 2003
"Roger deBry" <Roger_member@pathlink.com> wrote in message news:br7vlg$1mdc$1@digitaldaemon.com...
> I can't get make to work. When I run make it tells me that the target is
up to
> date. Obviously I have made some simple error in my makefile.
Unfortunately the
> documentation shows no examples (that would be nice). Can someone post a
simple
> example, say for a hello world program? Thanks

hello.exe : hello.c
    dmc hello



January 06, 2004
If you download the MicroEmacs editor from the front page, you can use that as an example.

Keith Fuller

In article <br7vlg$1mdc$1@digitaldaemon.com>, Roger deBry says...
>
>I can't get make to work. When I run make it tells me that the target is up to date. Obviously I have made some simple error in my makefile. Unfortunately the documentation shows no examples (that would be nice). Can someone post a simple example, say for a hello world program? Thanks