mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.1 KiB
49 lines
1.1 KiB
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for src
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
# $PostgreSQL: pgsql/src/Makefile,v 1.30 2003/11/29 19:51:39 pgsql 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 $@
|
|
$(MAKE) -C utils $@
|
|
|
|
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 $@
|
|
-$(MAKE) -C utils $@
|
|
rm -f Makefile.port Makefile.global
|
|
|