OSDN Git Service

Ouch, that should be `$(MAKE) -C', not `make -C' ...
[pg-rex/syncrep.git] / GNUmakefile.in
1 #
2 # PostgreSQL top level makefile
3 #
4 # $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.2 2000/06/07 23:09:18 petere Exp $
5 #
6
7 srcdir = @srcdir@
8 VPATH = @srcdir@
9
10 top_srcdir = @top_srcdir@
11 top_builddir = .
12
13
14 all:
15         $(MAKE) -C src all
16         @echo "All of PostgreSQL successfully made. Ready to install."
17
18 install:
19         $(MAKE) -C src install
20         @cat $(srcdir)/register.txt
21
22 clean:
23         $(MAKE) -C src clean
24
25 distclean:
26         $(MAKE) -C src distclean
27         -rm -f config.cache config.log config.status GNUmakefile
28
29
30 .PHONY: all install clean distclean