Makefile
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. # Comment/uncomment the following line to enable/disable debugging
  2. #DEBUG = y
  3. # This Makefile has been simplified as much as possible, by putting all
  4. # generic material, independent of this specific directory, into
  5. # ../Rules.make. Read that file for details
  6. TOPDIR  := $(shell cd ..; pwd)
  7. include $(TOPDIR)/Rules.make
  8. ifeq ($(DEBUG),y)
  9.   DEBFLAGS = -O -g -DSBULL_DEBUG # "-O" is needed to expand inlines
  10. else
  11.   DEBFLAGS = -O2
  12. endif
  13. CFLAGS += $(DEBFLAGS) -I..
  14. TARGET = sbull
  15. OBJS = $(TARGET).o
  16. SRC = $(TARGET).c
  17. all: .depend $(TARGET).o
  18. install:
  19. install -d $(INSTALLDIR)
  20. install -c $(TARGET).o $(INSTALLDIR)
  21. clean:
  22. rm -f *.o *~ core .depend
  23. depend .depend dep:
  24. $(CC) $(CFLAGS) -M $(TARGET).c > $@
  25. ifeq (.depend,$(wildcard .depend))
  26. include .depend
  27. endif