mirror of
https://github.com/postgres/postgres.git
synced 2026-02-14 00:03:18 -05:00
'make install'; there are enough of 'em that this slowed down the make noticeably. Ensure that 'all' is the default make target in all these directories (defaulting to 'make install' is surprising and dangerous IMHO). Fix a couple small typos.
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for src
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
# $Header: /cvsroot/pgsql/src/Makefile,v 1.28 2002/09/04 15:45:50 tgl Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src
|
|
top_builddir = ..
|
|
include Makefile.global
|
|
|
|
|
|
all install installdirs uninstall dep depend distprep:
|
|
$(MAKE) -C port $@
|
|
$(MAKE) -C backend $@
|
|
$(MAKE) -C backend/utils/mb/conversion_procs $@
|
|
$(MAKE) -C include $@
|
|
$(MAKE) -C interfaces $@
|
|
$(MAKE) -C bin $@
|
|
$(MAKE) -C pl $@
|
|
|
|
install-all-headers:
|
|
$(MAKE) -C include $@
|
|
|
|
clean:
|
|
$(MAKE) -C port $@
|
|
$(MAKE) -C backend $@
|
|
$(MAKE) -C include $@
|
|
$(MAKE) -C interfaces $@
|
|
$(MAKE) -C bin $@
|
|
$(MAKE) -C pl $@
|
|
$(MAKE) -C test $@
|
|
$(MAKE) -C tutorial $@
|
|
|
|
distclean maintainer-clean:
|
|
-$(MAKE) -C port $@
|
|
-$(MAKE) -C backend $@
|
|
-$(MAKE) -C include $@
|
|
-$(MAKE) -C interfaces $@
|
|
-$(MAKE) -C bin $@
|
|
-$(MAKE) -C pl $@
|
|
-$(MAKE) -C test $@
|
|
-$(MAKE) -C tutorial $@
|
|
rm -f Makefile.port Makefile.global
|