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

数据库系统

开发平台:

Unix_Linux

  1. #-------------------------------------------------------------------------
  2. #
  3. # Makefile--
  4. #    Makefile for rewrite
  5. #
  6. # IDENTIFICATION
  7. #    $Header: /usr/local/cvsroot/pgsql/src/backend/rewrite/Makefile,v 1.8 1998/07/26 04:30:37 scrappy Exp $
  8. #
  9. #-------------------------------------------------------------------------
  10. SRCDIR = ../..
  11. include ../../Makefile.global
  12. CFLAGS += -I..
  13. ifdef MULTIBYTE
  14. CFLAGS+= $(MBFLAGS)
  15. endif
  16. OBJS = rewriteRemove.o rewriteDefine.o 
  17.        rewriteHandler.o rewriteManip.o rewriteSupport.o locks.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