Index: [thread] [date] [subject] [author]
  From: Jon M. Taylor <taylorj@ecs.csus.edu>
  To  : ggi-develop@eskimo.com
  Date: Tue, 7 Jul 1998 16:55:04 -0700 (PDT)

Re: here we go...

On Tue, 7 Jul 1998, Frank W. Miller wrote:

> Continuing on the Makefile theme...
> 
> In the first non-recursive Makefile I run into, in the accel directory,
> I run into this SUBDIRS thing again, so I replace the all target with
> the following:
> 
> all:
> #       @echo -n "accel/ : "; set -e; \
> #        for i in $(SUBDIRS); do echo -n "$$i "; $(MAKE) -C $$i all; done
>         $(MAKE) -C $(ACCEL_CLASS) all
>         @cp $(ACCEL_CLASS)/$(ACCEL_TYPE).o accel.o; echo
> 
> I was thinking.  The original first item goes and makes all the accel
> drivers.  Why do this?  

	Good question.  I didn't know that was there.  Your way looks
correct to me, and AFAIK the other subsystems do things that way.  I'll
fix this in CVS as soon as I can.

Jon

---
'Cloning and the reprogramming of DNA is the first serious step in 
becoming one with God.'
	- Scientist G. Richard Seed

Index: [thread] [date] [subject] [author]