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

数据库系统

开发平台:

Unix_Linux

  1. #-------------------------------------------------------------------------
  2. #
  3. # Makefile--
  4. #    Makefile for regex
  5. #
  6. # IDENTIFICATION
  7. #    $Header: /usr/local/cvsroot/pgsql/src/backend/regex/Makefile,v 1.9 1999/05/21 06:27:54 ishii Exp $
  8. #
  9. #-------------------------------------------------------------------------
  10. SRCDIR = ../..
  11. include ../../Makefile.global
  12. CFLAGS += -I..
  13. CFLAGS += -DPOSIX_MISTAKE 
  14. DEBUGOBJ =
  15. OBJS = regcomp.o regerror.o regexec.o regfree.o
  16. ifdef MULTIBYTE
  17. CFLAGS+= $(MBFLAGS)
  18. DEBUGOBJ += ../utils/mb/SUBSYS.o
  19. endif
  20. all: SUBSYS.o
  21. SUBSYS.o: $(OBJS)
  22. $(LD) -r -o SUBSYS.o $(OBJS)
  23. retest: retest.o SUBSYS.o $(DEBUGOBJ)
  24. $(CC) -o retest retest.o SUBSYS.o $(DEBUGOBJ)
  25. depend dep:
  26. $(CC) -MM $(CFLAGS) *.c >depend
  27. clean: 
  28. rm -f SUBSYS.o $(OBJS) retest retest.o
  29. ifeq (depend,$(wildcard depend))
  30. include depend
  31. endif