o have a problem with these because when I try to compile
it will say:
usage: f77 [options] files
type man f77 for further details.
but if I take out all the \" characters, then it will compile fine.
Is there a Absoft flag I can use or something in autoconf (or automake)
I can use to
- Original Message -
From: "Paul Eggert" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, June 06, 2002 3:35 PM
Subject: Re: Absoft Define quotes problem
> > Date: Thu, 06 Jun 2002 09:09:46 -0500
> > From: Enrico Ng <[EMAIL PROTECTED]&
Is there a way to force my make file to use GNU Make, or make it stop if
someone doesn't use GNU Make?
I found out its a bug in Absoft.
the compiler does can only take integers for defines.
the preprocesser works ok, but the passes the defines to the compiler
for somereason.
Anyways, it looks like the only way I can fix this is to figure out how
to get Autoconf to NOT define those PACKAGE_NAME, et
>> You can dump them all into an include file instead of leaving them in
>> CPPFLAGS:
>> AM_CONFIG_HEADER([config.h])
>>I guess that's an automake thing, though.
Then, doesn't that mean I have to modify all my source files to include
config.h?
I would like to have my Makefile (made from autoconf/automake) beable to
just look at what files are in my source folder and compile all of them.
basicaly add all the sources files to _SOURCE
Now, I have configure crudely generate a list then include it with the
Makefile.
Does anyone know of a