Makefile
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. #-------------------------------------------------------------------------
  2. #
  3. # Makefile--
  4. #    Makefile for utils/mb
  5. #
  6. # IDENTIFICATION
  7. #    $Header: /usr/local/cvsroot/pgsql/src/backend/utils/mb/Makefile,v 1.3 1999/02/02 18:51:21 momjian Exp $
  8. #
  9. #-------------------------------------------------------------------------
  10. SRCDIR = ../../..
  11. include ../../../Makefile.global
  12. CFLAGS += -I../..
  13. ifdef MULTIBYTE
  14. CFLAGS+= $(MBFLAGS)
  15. endif
  16. OBJS = common.o conv.o mbutils.o wchar.o wstrcmp.o wstrncmp.o variable.o 
  17.        big5.o
  18. all: SUBSYS.o
  19. SUBSYS.o: $(OBJS)
  20. $(LD) -r -o SUBSYS.o $(OBJS)
  21. depend dep:
  22. $(CC) -MM $(CFLAGS) *.c >depend
  23. clean: 
  24. rm -f SUBSYS.o $(OBJS)
  25. ifeq (depend,$(wildcard depend))
  26. include depend
  27. endif