~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to src/backend/utils/mb/Makefile

  • Committer: alvherre
  • Date: 2005-12-16 21:24:52 UTC
  • Revision ID: svn-v4:db760fc0-0f08-0410-9d63-cc6633f64896:trunk:1
Initial import of the REL8_0_3 sources from the Pgsql CVS repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#-------------------------------------------------------------------------
 
2
#
 
3
# Makefile--
 
4
#    Makefile for utils/mb
 
5
#
 
6
# IDENTIFICATION
 
7
#    $PostgreSQL: pgsql/src/backend/utils/mb/Makefile,v 1.22 2003-11-29 19:52:02 pgsql Exp $
 
8
#
 
9
#-------------------------------------------------------------------------
 
10
 
 
11
subdir = src/backend/utils/mb
 
12
top_builddir = ../../../..
 
13
include $(top_builddir)/src/Makefile.global
 
14
 
 
15
OBJS = encnames.o conv.o mbutils.o wchar.o wstrcmp.o wstrncmp.o
 
16
DIRS = conversion_procs
 
17
 
 
18
all install installdirs: SUBSYS.o
 
19
 
 
20
uninstall distprep:
 
21
 
 
22
clean distclean maintainer-clean:
 
23
        rm -f SUBSYS.o $(OBJS)
 
24
        @for dir in $(DIRS); do $(MAKE) -C $$dir $@; done
 
25
 
 
26
SUBSYS.o: $(OBJS)
 
27
        $(LD) $(LDREL) $(LDOUT) $@ $^
 
28
 
 
29
depend dep:
 
30
        $(CC) -MM $(CFLAGS) *.c >depend
 
31
 
 
32
ifeq (depend,$(wildcard depend))
 
33
include depend
 
34
endif