diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-12-18 18:01:36 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-12-18 18:01:36 +0000 |
commit | db9b12bf1be48255ce670ea671c34e91d8b6c94c (patch) | |
tree | 49cbc2703f2594728af416a86cb4281184298728 /src | |
parent | 47af45c631aa1059e2f4a6cbb4335f390c751a61 (diff) |
Included are patches for doc/README.mb and README.mb.jp.
Please apply to both trees.
--
Tatsuo Ishii
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pgaccess/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/bin/pgaccess/Makefile b/src/bin/pgaccess/Makefile new file mode 100644 index 00000000000..a06f683afd8 --- /dev/null +++ b/src/bin/pgaccess/Makefile @@ -0,0 +1,21 @@ +#------------------------------------------------------------------------- +# +# Makefile +# Makefile for pgaccess +# +# Copyright (c) 1994, Regents of the University of California +# +# IDENTIFICATION +# $Header: /cvsroot/pgsql/src/bin/pgaccess/Attic/Makefile,v 1.1.2.1 1998/12/18 18:01:36 momjian Exp $ +# +#------------------------------------------------------------------------- + +SRCDIR= ../.. +include $(SRCDIR)/Makefile.global + +.PHONY: all clean +all clean: + +.PHONY: install +install: pgaccess.tcl + $(INSTALL) $(INSTL_EXE_OPTS) pgaccess.tcl $(BINDIR)/pgaccess |