Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 91382c2

Browse files
committed
Clean up mutibyte supoorting source files.
Now only wchar.c is shared by fronetnd/backend.
1 parent 3f8e306 commit 91382c2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/interfaces/libpq/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Copyright (c) 1994, Regents of the University of California
66
#
7-
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.49 2001/02/04 14:09:33 petere Exp $
7+
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.50 2001/02/11 01:52:11 ishii Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -24,7 +24,7 @@ OBJS= fe-auth.o fe-connect.o fe-exec.o fe-misc.o fe-print.o fe-lobj.o \
2424
$(INET_ATON) $(SNPRINTF) $(STRERROR)
2525

2626
ifdef MULTIBYTE
27-
OBJS+= common.o wchar.o
27+
OBJS+= wchar.o
2828
endif
2929

3030
# Add libraries that libpq depends (or might depend) on into the
@@ -62,7 +62,7 @@ strerror.c: $(backend_src)/port/strerror.c
6262
rm -f $@ && $(LN_S) $< .
6363

6464
ifdef MULTIBYTE
65-
common.c wchar.c : % : $(backend_src)/utils/mb/%
65+
wchar.c : % : $(backend_src)/utils/mb/%
6666
rm -f $@ && $(LN_S) $< .
6767
endif
6868

@@ -82,7 +82,7 @@ uninstall: uninstall-lib
8282
rm -f $(addprefix $(DESTDIR)$(includedir)/, libpq-fe.h libpq-int.h pqexpbuffer.h)
8383

8484
clean distclean maintainer-clean: clean-lib
85-
rm -f $(OBJS) dllist.c common.c wchar.c conv.c big5.c
85+
rm -f $(OBJS) dllist.c wchar.c
8686
rm -f $(OBJS) inet_aton.c snprintf.c strerror.c
8787

8888
depend dep:

0 commit comments

Comments
 (0)