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

数据库系统

开发平台:

Unix_Linux

  1. #-------------------------------------------------------------------------
  2. #
  3. # Makefile--
  4. #    Makefile for the genetic query optimizer module
  5. #
  6. # Copyright (c) 1994, Regents of the University of California
  7. #
  8. # $Id: Makefile,v 1.11 1999/02/15 03:22:00 momjian Exp $
  9. #
  10. #-------------------------------------------------------------------------
  11. SRCDIR = ../../..
  12. include ../../../Makefile.global
  13. CFLAGS += -I../..
  14. ifeq ($(CC), gcc)
  15. CFLAGS+= -Wno-error
  16. endif
  17. OBJS = geqo_copy.o geqo_eval.o geqo_main.o geqo_misc.o 
  18. geqo_params.o geqo_pool.o geqo_recombination.o 
  19. geqo_selection.o 
  20. geqo_erx.o geqo_pmx.o geqo_cx.o geqo_px.o geqo_ox1.o geqo_ox2.o
  21. # deprecated: minspantree.o
  22. all: SUBSYS.o
  23. SUBSYS.o: $(OBJS)
  24. $(LD) -r -o SUBSYS.o $(OBJS)
  25. depend dep:
  26. $(CC) -MM $(CFLAGS) *.c >depend
  27. clean: 
  28. rm -f SUBSYS.o $(OBJS)
  29. ifeq (depend,$(wildcard depend))
  30. include depend
  31. endif