Richard Frith-Macdonald wrote:
>
> On 13 Mar 2009, at 14:14, Justin Lolofie wrote:
>
>> So, I've written my first very simple command line tool with objc/gnustep.
>> Below is my GNUmakefile which works fine. Now I'd like to start using
>> plausible database which is an objc sqlite wrapper. It contains 8 .h and 8
>> .m files. I'm trying to figure out what to add to my GNUmakefile to
>> compile/link those files correctly. I see that there is a
>> "ADDITIONAL_INCLUDE_DIRS" which I can use to find the plausible db header
>> files, but I'm not sure how to tell it where the .m file are and how to
>> build them. I dont think they go in bwatch_OBJC_FILES do they? Thanks for
>> any help.
>
> Use bwatch_TOOL_LIBS to add libraries you want to link with ... that's what
> I do to link the SQLClient library (also wraps sqlite along with postgres
> and other database) with my tools.
First, Justin needs to compile pldatabase. This raises the question if