Makefile
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
- #-------------------------------------------------------------------------
- #
- # Makefile--
- # Makefile for utils/mb
- #
- # IDENTIFICATION
- # $Header: /usr/local/cvsroot/pgsql/src/backend/utils/mb/Makefile,v 1.3 1999/02/02 18:51:21 momjian Exp $
- #
- #-------------------------------------------------------------------------
- SRCDIR = ../../..
- include ../../../Makefile.global
- CFLAGS += -I../..
- ifdef MULTIBYTE
- CFLAGS+= $(MBFLAGS)
- endif
- OBJS = common.o conv.o mbutils.o wchar.o wstrcmp.o wstrncmp.o variable.o
- big5.o
- all: SUBSYS.o
- SUBSYS.o: $(OBJS)
- $(LD) -r -o SUBSYS.o $(OBJS)
- depend dep:
- $(CC) -MM $(CFLAGS) *.c >depend
- clean:
- rm -f SUBSYS.o $(OBJS)
- ifeq (depend,$(wildcard depend))
- include depend
- endif