adding to CFLAGS for all objects in subdir

2001-03-13 Thread Jeremy Slade
. Ideally, those same macros would change the CFLAGS, INCLUDES, etc for this specific directory to include all of the perl-related stuff. My platform is HP-UX 10.20, gcc-2.95.2, perl 5.6.0, autoconf-2.49c, automake-1.4b, libtool-1.3.5 Please tell me there's an easier way to do this...

Disabling C++ exception handling

2001-03-14 Thread Jeremy Slade
I want a macro that automatically adds the compiler flags to disable exception handling, e.g. '-fno-exceptions' for gcc. Does such a macro already exist? If not, how would I go about creating one? Jeremy -- Jeremy Slade Hewlett-Packard Company VLSI Technology Center - http://c

Avoid having PACKAGE and VERSION defined in config.h

2001-03-21 Thread Jeremy Slade
eremy -- Jeremy Slade Hewlett-Packard Company VLSI Technology Center - http://cpus.hp.com/ [EMAIL PROTECTED](970) 898-7881

Solution for building perl modules

2001-03-26 Thread Jeremy Slade
foolproof, super robust. For building the perl extension, most of the 'configuration' comes from the perl Config.pm, so whatever is configured in the various other Makefiles is not reflected in the Makefile.perl. Perhaps that's not an issue -- what do the experts think? Happy

Re: Solution for building perl modules

2001-03-27 Thread Jeremy Slade
Tim Van Holder writes: > On 26 Mar 2001 15:24:16 -0700, Jeremy Slade wrote: > > .made_mode = MyMod.C Makefile.perl > > $(MAKE) -fMakefile.perl > > touch $@ > > Minor portability issue: try to avoid names starting with leading dots. > If your code i