mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
parts o f postgresql. The jdbc drivers are never compiled with debugging support. This p atch make sure that debugging information is added to the jdbc jar when the --en able-debug is added. This was usefull for me for debugging some java jdbc poolin g objects but this might perhaps be usefull for other people too? Dries Verachtert
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for JDBC driver
|
|
#
|
|
# Copyright (c) 2001, PostgreSQL Global Development Group
|
|
#
|
|
# $Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/Makefile,v 1.34 2002/03/05 17:55:23 momjian Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/interfaces/jdbc
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
majorversion := $(shell echo $(VERSION) | sed 's/^\([0-9][0-9]*\)\..*$$/\1/')
|
|
minorversion := $(shell echo $(VERSION) | sed 's/^[0-9][0-9]*\.\([0-9][0-9]*\).*$$/\1/')
|
|
|
|
properties := -Dmajor=$(majorversion) -Dminor=$(minorversion) \
|
|
-Dfullversion=$(VERSION) \
|
|
-Ddef_pgport=$(DEF_PGPORT) \
|
|
-Denable_debug=$(enable_debug)
|
|
|
|
all:
|
|
$(ANT) -buildfile $(srcdir)/build.xml all \
|
|
$(properties)
|
|
|
|
install: installdirs
|
|
$(ANT) -buildfile $(srcdir)/build.xml install \
|
|
-Dinstall.directory=$(javadir) $(properties)
|
|
|
|
installdirs:
|
|
$(mkinstalldirs) $(javadir)
|
|
|
|
uninstall:
|
|
$(ANT) -buildfile $(srcdir)/build.xml uninstall \
|
|
-Dinstall.directory=$(javadir)
|
|
|
|
clean distclean maintainer-clean:
|
|
$(ANT) -buildfile $(srcdir)/build.xml clean
|
|
|
|
check:
|
|
$(ANT) -buildfile $(srcdir)/build.xml test
|