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

嵌入式Linux

开发平台:

C/C++

  1. # Comment/uncomment the following line to disable/enable 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. # Add your debugging flag (or not) to CFLAGS
  9. ifeq ($(DEBUG),y)
  10.   DEBFLAGS = -O -g -DSIMPLE_DEBUG # "-O" is needed to expand inlines
  11. else
  12.   DEBFLAGS = -O2
  13. endif
  14. CFLAGS += $(DEBFLAGS)
  15. CFLAGS += -I..
  16. TARGET = simple
  17. OBJS = $(TARGET).o
  18. SRC = simple.c
  19. all: .depend $(TARGET).o
  20. install:
  21. install -d $(INSTALLDIR)
  22. install -c $(TARGET).o $(INSTALLDIR)
  23. clean:
  24. rm -f *.o *~ core .depend
  25. depend .depend dep:
  26. $(CC) $(CFLAGS) -M *.c > $@
  27. ifeq (.depend,$(wildcard .depend))
  28. include .depend
  29. endif