Re: eliminating implicit rules in makefiles

2006-06-27 Thread Mumia W.
[EMAIL PROTECTED] wrote: How can I disab;e *all* the default rules in my Makefiles? [...] David Kirchner's advice to use the '-r' parameter to make is correct. Also you can put this line at the top of your makefiles: .SUFFIXES: -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject

Re: eliminating implicit rules in makefiles

2006-06-27 Thread David Kirchner
On 6/27/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: How can I disab;e *all* the default rules in my Makefiles? GNU 'make' has a '-r' flag that does this. It seems to work, in my limited testing. -- David 'dpk' Kirchner -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "un

Re: eliminating implicit rules in makefiles

2006-06-27 Thread Mike McCarty
Nelson Castillo wrote: How can I get rid of all these implicit rules, so I only get the ones I speify explicitly? Learn autoconf and automake. This is a non-answer. Make never should have been burdened by these default rules, and having them prsent is a defect or flaw. So, how about answeri

Re: eliminating implicit rules in makefiles

2006-06-27 Thread Nelson Castillo
How can I get rid of all these implicit rules, so I only get the ones I speify explicitly? Learn autoconf and automake. -- http://arhuaco.org/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

eliminating implicit rules in makefiles

2006-06-27 Thread hendrik
How can I disab;e *all* the default rules in my Makefiles? When I say make frith I don't want it do respond with cc frith.c -o frith even if there is a frith.c file, because that just doesn't work. Frith needs a lot more source files to be compiled. I'd want it to say no