This is the mail archive of the guile@sourceware.cygnus.com mailing list for the Guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: make clean leaves *.x files.


Dirk Herrmann <dirk@ida.ing.tu-bs.de> writes:

> When I use
>   make clean; make CPPFLAGS=-D....
> it does not work, since the *.x files are not removed by a make clean.  I
> always have to remove those files manually.  Is it possible to change
> that?

Hmm, we can't distribute the *.x files because they may depend on
configure time options (like Dirk has experienced), and we don't
create them during configure time.  Thus, I think we should remove
them with "make clean".  Any objections?

The main problem as I see it is that the *.x files contain
pre-processed source code, which is making them just as
machine-dependent as *.o files (because they have things like CHAR_BIT
expanded in them).  As long as that is the case, I think we should
remove *.x files at the same time as *.o files.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]