Don and Bob, Thanks very much for your help on this. I've had a look through the material you've provided and I'm sure the answers are in there - I can indeed see the general ideas but I need to find time to get to grips with some of the makefile usage, some of which are outside my limited subset, including vpath. Thanks again, Mark On 24/11/2011 17:55, Don Kinzer wrote: > > --- In AVR-Chat@yahoogroups.com, Mark Nowell<mark@...> wrote: >> Is there a way to drive make/gcc which allows the object files >> and binaries for different targets to be kept alongside each other? > We build for dozens of targets using the same code base, putting object files, libraries and executables in separate directories and/or with distinguishing names. For example, when building for the mega644P the object files end up as objDir/mega644P/xxx.o and the libraries end up as libDir/libxxx_mega644P.a. The makefile is set up to create the directories it needs if they don't already exist. This makes it easy to effectively to a "make clean" for all targets by simply deleting the libDir and objDir directories. > > I've created an outline of a makefile that uses these concepts that may give you some ideas. I may have made some mistakes when I put this together but you should be able to understand the general idea. You may need to consult the gnu make documentation for a fuller understanding. > > http://www.zbasic.net/download/makefile.txt > > For some of our projects we use recursive invocation of make (specifying values for certain macro names to control the operation) or we use separate makefiles (a.mak, b.mak, etc.) or a combination of both. Which to use depends on the circumstances and goals. > > Don Kinzer > ZBasic Microcontrollers > > > > > ------------------------------------ > > Yahoo! Groups Links > > >
Message
Re: [AVR-Chat] Re: OT - managing multi-target projects (linux/NGW)
2011-11-28 by Mark Nowell
Attachments
- No local attachments were found for this message.