mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-27 07:21:09 +08:00
af3ce5daa4
redirections between the build files, which didn't work completely. Now you just go to the directory of your choice and run make. Clean up the build files to have a logical order, fix the unnecessary rebuilds, prevent the deleting targets from removing files they're not responsible for. Ant 1.3 does not have a bug. It deletes directories just fine if you follow the documentation.
31 lines
812 B
Makefile
31 lines
812 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for contributed retep tools
|
|
#
|
|
# Copyright (c) 2001, PostgreSQL Global Development Group
|
|
#
|
|
# $Header: /cvsroot/pgsql/contrib/retep/Attic/Makefile,v 1.1 2001/07/06 23:07:20 petere Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = contrib/retep
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
all:
|
|
$(ANT) -buildfile $(srcdir)/build.xml all
|
|
|
|
install: installdirs
|
|
$(ANT) -buildfile $(srcdir)/build.xml install \
|
|
-Dinstall.directory=$(javadir)
|
|
|
|
installdirs:
|
|
$(mkinstalldirs) $(javadir)
|
|
|
|
uninstall:
|
|
$(ANT) -buildfile $(srcdir)/build.xml uninstall \
|
|
-Dinstall.directory=$(javadir)
|
|
|
|
clean distclean maintainer-clean:
|
|
$(ANT) -buildfile $(srcdir)/build.xml clean
|