Re: Looking for TFM on OS X module building

2007-05-01 Thread Tim Bray
On May 1, 2007, at 11:18 AM, josh rotenberg wrote: I put my tarball of stuff up on google code for anyone else that might be interested: http://code.google.com/p/modskeleton/ The goal is to have something that sets you up for mutliple source files, a utils directory for other binary tools/scrip

Re: Looking for TFM on OS X module building

2007-05-01 Thread josh rotenberg
I put my tarball of stuff up on google code for anyone else that might be interested: http://code.google.com/p/modskeleton/ The goal is to have something that sets you up for mutliple source files, a utils directory for other binary tools/scripts, etc. As the name suggests, it is just a skeleton.

Re: Looking for TFM on OS X module building

2007-05-01 Thread shookie
I use a little hack to find the appropriate apxs, you need csh for tha though, but that is installed on almost any unix: APXS := $(wildcard $(shell csh -c "which apxs2" 2>/dev/null)) APXS := $(if $(APXS),$(APXS),$(wildcard $(shell csh -c "which apxs" 2>/dev/null))) Jan Schukat