diff options
author | Bruce Momjian | 1998-12-18 17:54:42 +0000 |
---|---|---|
committer | Bruce Momjian | 1998-12-18 17:54:42 +0000 |
commit | 99603f8578c970e3e25219f451d76c225ab3be16 (patch) | |
tree | 1b2f5e59e7ed388b507324bedb952aac7b9a0607 | |
parent | 3d39ea7341bfa1cae5baf9956cb1692c2d267e9d (diff) |
Add pgaccess Makefile.
-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..4abcd029860 --- /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 1998/12/18 17:54:42 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 |