blob: b19a125fa2f32d9124a58bf7ae5b9857d34a8430 (
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
|
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for utils/mb
#
# IDENTIFICATION
# src/backend/utils/mb/Makefile
#
#-------------------------------------------------------------------------
subdir = src/backend/utils/mb
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
OBJS = \
conv.o \
mbutils.o \
stringinfo_mb.o \
wstrcmp.o \
wstrncmp.o
include $(top_srcdir)/src/backend/common.mk
clean distclean maintainer-clean:
$(MAKE) -C conversion_procs $@
|