mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-12 17:37:07 +08:00
33 lines
874 B
Makefile
33 lines
874 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for src/bin/pg_encoding
|
|
#
|
|
# Copyright (c) 1998, PostgreSQL Global Development Group
|
|
#
|
|
# $Header: /cvsroot/pgsql/src/bin/pg_encoding/Attic/Makefile,v 1.15 2002/07/27 20:10:05 petere Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/bin/pg_encoding
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
OBJS= pg_encoding.o
|
|
|
|
all: submake-libpq submake-libpgport pg_encoding
|
|
|
|
pg_encoding: $(OBJS)
|
|
$(CC) $(CFLAGS) $^ $(libpq) $(LDFLAGS) $(LIBS) -o $@
|
|
|
|
install: all installdirs
|
|
$(INSTALL_PROGRAM) pg_encoding$(X) $(DESTDIR)$(bindir)/pg_encoding$(X)
|
|
|
|
installdirs:
|
|
$(mkinstalldirs) $(DESTDIR)$(bindir)
|
|
|
|
uninstall:
|
|
rm -f $(DESTDIR)$(bindir)/pg_encoding$(X)
|
|
|
|
clean distclean maintainer-clean:
|
|
rm -f pg_encoding$(X) pg_encoding.o
|