blob: 587abbd089d5fa836c66b1aad21bdd98ab555ced (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#-------------------------------------------------------------------------
#
# Makefile for bin/pg_encoding
#
# Copyright (c) 1998, PostgreSQL development group
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/pg_encoding/Attic/Makefile,v 1.2 1998/07/26 04:31:18 scrappy Exp $
#
#-------------------------------------------------------------------------
SRCDIR= ../..
include ../../Makefile.global
OBJS= pg_encoding.o
CFLAGS+= $(MBFLAGS) -I$(SRCDIR)/include
all: pg_encoding
pg_encoding: $(OBJS) $(LIBPQDIR)/libpq.a
$(CC) -o pg_encoding $(OBJS) -L$(LIBPQDIR) -lpq $(LDFLAGS)
install: pg_encoding
$(INSTALL) $(INSTL_EXE_OPTS) pg_encoding $(BINDIR)/pg_encoding
depend dep:
$(CC) -MM $(CFLAGS) *.c >depend
clean:
rm -f pg_encoding pg_encoding.o
ifeq (depend,$(wildcard depend))
include depend
endif
|