summaryrefslogtreecommitdiff
path: root/GNUmakefile.in
Commit message (Collapse)AuthorAgeFilesLines
...
* Rearrange distribution split as discussed on -hackers.Peter Eisentraut2001-04-081-9/+18
|
* Restructure the key include files per recent pghackers discussion: thereTom Lane2001-02-101-1/+4
| | | | | | | | | | | are now separate files "postgres.h" and "postgres_fe.h", which are meant to be the primary include files for backend .c files and frontend .c files respectively. By default, only include files meant for frontend use are installed into the installation include directory. There is a new make target 'make install-all-headers' that adds the whole content of the src/include tree to the installed fileset, for use by people who want to develop server-side code without keeping the complete source tree on hand. Cleaned up a whole lot of crufty and inconsistent header inclusions.
* Use more portable syntax for 'find'.Peter Eisentraut2001-01-061-2/+2
|
* Seems like make clean or make distclean should clean out contribTom Lane2000-12-041-3/+11
| | | | directories too, not only src and doc.
* "installcheck" doesn't need to depend on "all" since we depend on the userPeter Eisentraut2000-10-021-2/+4
| | | | to start up a postmaster anyway.
* New unified regression test driver, test/regress makefile cleanup,Peter Eisentraut2000-09-291-1/+3
| | | | | add "check" and "installcheck" targets, straighten out make variable naming of host_os, host_cpu, etc.
* Replace brain-dead Autoconf macros AC_ARG_{ENABLE,WITH} with somethingPeter Eisentraut2000-09-211-20/+1
| | | | | | | that's actually useful, robust, consistent. Better plan to generate aclocal.m4 as well: use m4 include directives, rather than cat.
* Fix relative path references so that make knowns which dependencies referPeter Eisentraut2000-08-311-2/+2
| | | | | to one another. Sort out builddir vs srcdir variable namings. Remove some now obsoleted make variables.
* coupla minor fixes in the `make dist' support codePeter Eisentraut2000-08-201-11/+15
|
* Add distprep target to take some of the job of the release_prep script.Peter Eisentraut2000-07-191-2/+72
| | | | | | | | | | | | | The latter updated accordingly. Also add `dist' and `distcheck' targets to play with, but caveat packager. Updated backend/bootstrap and backend/parser makefile to make them marginally builddir aware and fix the usual set of things. Add rule to automatically remake config.h dependent on config.h.in and config.status. (Adopted from Autoconf manual and about every other package.) On a good day we should now have a complete and accurate set of dependencies throughout everything.
* End users shouldn't have to invoke a separate command to install thePeter Eisentraut2000-07-171-5/+8
| | | | | | | | documentation. Therefore it's now installed by default. If there is no documentation to be found (i.e., you are not using the distribution) then this step is skipped. Add --docdir option to configure to control installation directory.
* Automatic dependency trackingPeter Eisentraut2000-07-161-4/+1
| | | | | The .DEFAULT rule in backend/Makefile is harmful -- removed. Replace `::' rules by `:'.
* Makefile cleanup for interface tree. Now essentially with all thePeter Eisentraut2000-06-281-11/+8
| | | | | | | | | | | | | | | | | | | | | standard targets and behaviour. Replaced Makefile.in's with Makefile's and declared the respective variables in Makefile.global. maintainer-clean target now available at top level, although it does not work in the backend tree yet. Cleanup pass over Makefile.shlib, renamed some targets and variables. The shared library symlink tests are now done by make, not the shell. ecpg: Remove one warning in sloppy flex output. PL/Perl and Perl interface: the MakeMaker documentation is confusing, the realclean target *does* "delete derived files", but it also uninstalls them. Don't use that. The submake targets in the various bin directories that update libpq should `make all', not `make libpq.a'. That is a) unportable, and b) doesn't build the shared library.
* Big warnings cleanup for Solaris/GCC. Down to about 40 now, butPeter Eisentraut2000-06-141-17/+18
| | | | | | | | | | | we'll get there one day. Use `cat' to create aclocal.m4, not `aclocal'. Some people don't have automake installed. Only run the autoconf rule in the top-level GNUmakefile if the invoker specified `make configure', don't run it automatically because of CVS timestamp skew.
* Remove overenthusiastic use of dependencies to control autoconf.Tom Lane2000-06-111-7/+16
|
* Moved the intricacies of the perl interface build into its own makefilePeter Eisentraut2000-06-101-2/+18
| | | | | | | | | | | | | | | | | | that now functions as a wrapper around the MakeMaker stuff. It might even behave sensically when we have separate build dirs. Same for plperl, which of course still doesn't work very well. Made sure that plperl respects the choice of --libdir. Added --with-python to automatically build and install the Python interface. Works similarly to the Perl5 stuff. Moved the burden of the distclean targets lower down into the source tree. Eventually, each make file should have its own. Added automatic remaking of makefiles and configure. Currently only for the top-level because of a bug(?) in Autoconf. Use GNU `missing' to work around missing autoconf and aclocal. Start factoring out macros into their own config/*.m4 files to increase readability and organization.
* Ouch, that should be `$(MAKE) -C', not `make -C' ...Peter Eisentraut2000-06-071-5/+5
|
* Moved configure script from src/ to the top level directory. MovedPeter Eisentraut2000-06-061-0/+30
configuration helper things into config/ dir. Adjusted some relative paths in makefiles.