Re: build system

From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: Karel Zak <zakkr(at)zf(dot)jcu(dot)cz>
Cc: pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: build system
Date: 2000-07-06 16:13:40
Message-ID: Pine.LNX.4.21.0007060233100.347-100000@localhost.localdomain
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Karel Zak writes:

> * The ./configure expect for template listing template in "template" dir
> but it is "src/template" (see line 132 in configure.in)

Noted.

> * A question, try anyone compile PG after 'make depend'?
> It show some warning messages.

Elaborate.

> And a second question, how clean 'depend' files?

find -name depend | xargs rm

> It is not posible via 'make clean' or 'make distclean'. Bug or feature?

Consequence of other features:

* make clean removes all files created by make all, except those that you
want to include in the distribution.

* make distclean removes all files removed by make clean, plus those
created by configure

* make maintainer-clean removes all files removed by distclean, as well as
those that are in the distribution.

The depend files do not fall into any of these categories. Eventually
we'll generate dependencies automatically as a side-effect of compilation.
At that point they will also fall under the make clean (or
maintainer-clean) category.

--
Peter Eisentraut Sernanders väg 10:115
peter_e(at)gmx(dot)net 75262 Uppsala
http://yi.org/peter-e/ Sweden

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message The Hermit Hacker 2000-07-06 16:19:09 Re: [HACKERS] Re: Revised Copyright: is this more palatable?
Previous Message Peter Eisentraut 2000-07-06 16:13:31 Re: zlib for pg_dump