# Makefile for Java JDBC interface
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/Makefile,v 1.7 1998/04/06 00:30:36 momjian Exp $
+# $Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/Makefile,v 1.8 1998/06/03 18:56:09 scrappy Exp $
#
#-------------------------------------------------------------------------
postgresql/largeobject/LargeObjectManager.class \
postgresql/util/PGobject.class \
postgresql/util/PGtokenizer.class \
+ postgresql/util/Serialize.class \
postgresql/util/UnixCrypt.class
# If you have problems with the first line, try the second one.
postgresql/largeobject/LargeObjectManager.class: postgresql/largeobject/LargeObjectManager.java
postgresql/util/PGobject.class: postgresql/util/PGobject.java
postgresql/util/PGtokenizer.class: postgresql/util/PGtokenizer.java
+postgresql/util/Serialize.class: postgresql/util/Serialize.java
postgresql/util/UnixCrypt.class: postgresql/util/UnixCrypt.java
#######################################################################
example/blobtest.class \
example/datestyle.class \
example/psql.class \
- example/ImageViewer.class
+ example/ImageViewer.class \
+ example/Objects.class
# This rule builds the examples
examples: postgresql.jar $(EX)
@echo " example.datestyle Shows how datestyles are handled"
@echo " example.ImageViewer Example application storing images"
@echo " example.psql Simple java implementation of psql"
+ @echo " example.Objects Demonstrates Object Serialisation"
@echo ------------------------------------------------------------
@echo
example/datestyle.class: example/datestyle.java
example/psql.class: example/psql.java
example/ImageViewer.class: example/ImageViewer.java
+example/Objects.class: example/Objects.java
#######################################################################