Re: build system - Mailing list pgsql-hackers

From Peter Eisentraut
Subject Re: build system
Date
Msg-id Pine.LNX.4.21.0007060233100.347-100000@localhost.localdomain
Whole thread Raw
In response to build system  (Karel Zak <zakkr@zf.jcu.cz>)
Responses Re: build system  (Karel Zak <zakkr@zf.jcu.cz>)
List 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@gmx.net                   75262 Uppsala
http://yi.org/peter-e/            Sweden



pgsql-hackers by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: zlib for pg_dump
Next
From: Philip Warner
Date:
Subject: Re: Re: pg_dump and LOs (another proposal)