summaryrefslogtreecommitdiff
path: root/GNUmakefile.in
blob: f54997da424c081d7cbb4359b59c458555c4f1e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#
# PostgreSQL top level makefile
#
# $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.1 2000/06/06 22:00:45 petere Exp $
#

srcdir = @srcdir@
VPATH = @srcdir@

top_srcdir = @top_srcdir@
top_builddir = .


all:
	make -C src all
	@echo "All of PostgreSQL successfully made. Ready to install."

install:
	make -C src install
	@cat $(srcdir)/register.txt

clean:
	make -C src clean

distclean:
	make -C src distclean
	-rm -f config.cache config.log config.status GNUmakefile


.PHONY: all install clean distclean