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 PRO

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

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

Re: Quoting shell command lines in Makefiles

2005-10-17 Thread Michael D. Crawford
Further Reading of The Fine Manual reveals that that way to quote $ in a makefile is to say "$$": test: testexec for test in $(TESTS); do ./$$test ; done I'm using CPPUnit (http://cppunit.sourceforge.net/cppunit-wiki) to make unit tests for each class in my C++ program. I can say "mak

Quoting shell command lines in Makefiles

2005-10-17 Thread Michael D. Crawford
I'm using CPPUnit (http://cppunit.sourceforge.net/cppunit-wiki) to make unit tests for each class in my C++ program. I can say "make test" to have them all built and executed. The "testexec" target builds the unit test executables without running them. I started with something like this: TE

Re: Make/makefiles

2000-04-03 Thread Daniel Reuter
Hello Bart, > Can anybody tell me how to make a *simple* makefile? Or a URL where I can > find more info? The manpages aren't very clear, and *way* too extensive. try the info-pages on make (hope you have some kind of info-browser installed). There is a chapter at the beginning (some kind of int

Re: Make/makefiles

2000-04-01 Thread Lehel Bernadt
On Sat, 01 Apr 2000, Bart Friederichs wrote: > Hi, > > Can anybody tell me how to make a *simple* makefile? Or a URL where I can > find more info? The manpages aren't very clear, and *way* too extensive. > > I have a small project with 3 source code files, and I don't want to compile > all of the

Re: Make/makefiles

2000-03-31 Thread Oswald Buddenhagen
> Can anybody tell me how to make a *simple* makefile? Or a URL where I can > find more info? The manpages aren't very clear, and *way* too extensive. > > I have a small project with 3 source code files, and I don't want to compile > all of them every time. > OBJS=foo.o bar.o foobar.o all: targe

Make/makefiles

2000-03-31 Thread Bart Friederichs
Hi, Can anybody tell me how to make a *simple* makefile? Or a URL where I can find more info? The manpages aren't very clear, and *way* too extensive. I have a small project with 3 source code files, and I don't want to compile all of them every time. tia Bart

Re: Making Makefiles

1999-05-28 Thread Martin Waller
choen <[EMAIL PROTECTED]> To: Brad <[EMAIL PROTECTED]> CC: debian-user@lists.debian.org Subject: Re: Making Makefiles Date: Thu, 27 May 1999 21:19:24 +0200 Brad wrote: > > i'm getting started writing C/C++ programs that are more than one file > long, so i decided it's about

Re: Making Makefiles

1999-05-27 Thread Dennis Schoen
> What's a good way to learn to make good makefiles? Which packages do i > need, and where do i even start to learn to use them? > > Thanks in advance. > > -- > Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null I use the Code Crusader ID

Re: Making Makefiles

1999-05-27 Thread Charles B \(Ben\) Cranston
> i'm getting started writing C/C++ programs that are more than one file > long, so i decided it's about time i learn to make a makefile... > What's a good way to learn to make good makefiles? Which packages do i > need, and where do i even start to learn to use the

RE: Making Makefiles

1999-05-27 Thread Jonathan Lupa
EMAIL PROTECTED] wrote: > What's a good way to learn to make good makefiles? Which packages do i > need, and where do i even start to learn to use them?

Re: Making Makefiles

1999-05-27 Thread J.H.M. Dassen
's a good way to learn to make good makefiles? Which packages do i > need, and where do i even start to learn to use them? http://www.wi.leidenuniv.nl/~kuyper/stuva2/debug.ps.gz has an example and references to make tutorials. On Thu, May 27, 1999 at 09:21:23 +0200, Stephan Engelke wrote:

Re: Making Makefiles

1999-05-27 Thread Stephan Engelke
nfigure.in... > i'm getting confused! automake and friends are used to create the GNU-style configure scripts (which in turn generate Makefiles). I am sure you have seen those. The configure-scripts are nice and easy to handle as far as automatic variable substitution goes (prefix=,...)

Making Makefiles

1999-05-27 Thread Brad
i'm getting started writing C/C++ programs that are more than one file long, so i decided it's about time i learn to make a makefile. The make info page mentions automake, the automake manpage hints at configure.in... i'm getting confused! What's a good way to learn to make g

Re: xmkmf generates bad Makefiles

1998-10-20 Thread Andy Spiegl
Would someone please be so kind to comment on this? Thank you! Andy. | Hi! | | whenever I do a xmkmf to get a Makefile from an Imakefile I have | to do manual editing of the Makefile before I can use it. All the | comment lines start with | XCOMM | instead of | # | | I don't have this probl

xmkmf generates bad Makefiles

1998-10-14 Thread Andy Spiegl
Hi! whenever I do a xmkmf to get a Makefile from an Imakefile I have to do manual editing of the Makefile before I can use it. All the comment lines start with XCOMM instead of # I don't have this problem at other unix machines (at work), so I suppose it could be a debian misconfiguration. Al

Re: Makefiles

1997-07-07 Thread Shaya Potter
On Mon, 7 Jul 1997, Jason Westervelt wrote: > I am running across a few apps that need > xmkmf > to compile.. where should I go to get all the stuff to deal with these > type of make file? > actually I am something of a newbie to linux, but I think xmkmf MAKES a > makefile from some other type o

Re: Makefiles

1997-07-07 Thread Alex Yukhimets
been looking for > general documentation to no avail.. > > Jason xmkmf is a part of a big utility called "imake" indeed used to create makefiles, primarily for X window system (itself and applications). It is available from xlib6-dev package and you may find a lot of interesting

Re: Makefiles

1997-07-07 Thread Ed Down
I have just started delving into Makefiles and I would recommend you get GNU make an use the documantation that is supplied - it got me going quite quickly, and it's well supported and free... For those packages that require xmkmf to compile, I would just install whatever package it com

Makefiles

1997-07-07 Thread Jason Westervelt
I am running across a few apps that need xmkmf to compile.. where should I go to get all the stuff to deal with these type of make file? actually I am something of a newbie to linux, but I think xmkmf MAKES a makefile from some other type of file, i dunno.. =) been looking for general documentatio