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

数据库系统

开发平台:

Unix_Linux

  1. #-------------------------------------------------------------------------
  2. #
  3. # Makefile--
  4. #    Makefile for port/next (NeXTStep 3.3 specific stuff)
  5. #
  6. #-------------------------------------------------------------------------
  7. SRCDIR = ../../..
  8. include ../../../Makefile.global
  9. INCLUDE_OPT = -I../.. 
  10. CFLAGS+=$(INCLUDE_OPT)
  11. OBJS = dynloader.o port.o
  12. all: SUBSYS.o
  13. SUBSYS.o: $(OBJS)
  14. $(LD) -r -o SUBSYS.o $(OBJS)
  15. depend dep:
  16. $(CC) -MM $(INCLUDE_OPT) *.c >depend
  17. clean:
  18. rm -f SUBSYS.o $(OBJS)
  19. ifeq (depend,$(wildcard depend))
  20. include depend
  21. endif