aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-11-18 19:00:23 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-11-18 19:00:23 +0000
commitf999912658c94599d3aafac0f4030cadf17196b0 (patch)
tree57988a2973541a58a6908f8f7666105aff3abb92
parentbd9d9621dc6a365864d0a3739c8687a6cb6da04b (diff)
downloadpostgresql-f999912658c94599d3aafac0f4030cadf17196b0.tar.gz
postgresql-f999912658c94599d3aafac0f4030cadf17196b0.zip
Simplification: Build executable directly from .c file.
-rw-r--r--src/bin/pg_passwd/Makefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/bin/pg_passwd/Makefile b/src/bin/pg_passwd/Makefile
index 74838dc3ad0..d96b102dfa2 100644
--- a/src/bin/pg_passwd/Makefile
+++ b/src/bin/pg_passwd/Makefile
@@ -1,13 +1,10 @@
-# $Header: /cvsroot/pgsql/src/bin/pg_passwd/Attic/Makefile,v 1.11 2000/09/17 13:02:41 petere Exp $
+# $Header: /cvsroot/pgsql/src/bin/pg_passwd/Attic/Makefile,v 1.12 2000/11/18 19:00:23 petere Exp $
subdir = src/bin/pg_passwd
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
-all: pg_passwd$(X)
-
-pg_passwd$(X): pg_passwd.o
- $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
+all: pg_passwd
install: all installdirs
$(INSTALL_PROGRAM) pg_passwd$(X) $(DESTDIR)$(bindir)/pg_passwd$(X)