Re: [HACKERS] Multiple Extensions

2011-11-11 Thread David E. Wheeler
On Nov 11, 2011, at 11:04 AM, Dimitri Fontaine wrote: EXTENSION= pgtap pgtap-core pgtap-schema >> https://github.com/theory/pgtap/blob/master/Makefile > > I don't see the line above in the file you linked. The content of the > Makefile I just read is not using multiple extensions at

Re: [HACKERS] Multiple Extensions

2011-11-11 Thread Dimitri Fontaine
"David E. Wheeler" writes: >>>EXTENSION= pgtap pgtap-core pgtap-schema > https://github.com/theory/pgtap/blob/master/Makefile I don't see the line above in the file you linked. The content of the Makefile I just read is not using multiple extensions at all, it's re implementing all of

Re: [HACKERS] Multiple Extensions

2011-11-11 Thread David E. Wheeler
On Nov 11, 2011, at 9:20 AM, David E. Wheeler wrote: >> Can we see your Makefile? > > Right here: > > https://github.com/theory/pgtap/blob/master/Makefile Oy, this is stupidly my fault. I blame the late hours and the second stout. Thanks, David -- Sent via pgsql-hackers mailing list (pgsq

Re: [HACKERS] Multiple Extensions

2011-11-11 Thread David E. Wheeler
On Nov 11, 2011, at 4:27 AM, Dimitri Fontaine wrote: >>EXTENSION= pgtap pgtap-core pgtap-schema > > See contrib/spi/Makefile for an exemple of that. Okay, good, it *should* work then. >>> make >>Makefile:79: *** multiple target patterns. Stop. >> >> So is that not supported? If no

Re: [HACKERS] Multiple Extensions

2011-11-11 Thread Dimitri Fontaine
"David E. Wheeler" writes: > EXTENSION= pgtap pgtap-core pgtap-schema See contrib/spi/Makefile for an exemple of that. > > make > Makefile:79: *** multiple target patterns. Stop. > > So is that not supported? If not, why not? Can we see your Makefile? Regards, -- Dimitri Font

[HACKERS] Multiple Extensions

2011-11-10 Thread David E. Wheeler
Hackers, I’m preparing a new release of pgTAP, and have started breaking it down into smaller extensions. I’ve been planning to have them all in one distribution file for now, but it seems that one cannot specify multiple extension names in the EXTENSION variable. In my Makefile, I have EX