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

嵌入式Linux

开发平台:

C/C++

  1. # stepper/makefile
  2. # Comment/uncomment the following line to enable/disable debugging
  3. #DEBUG = y
  4. # Change it here or specify it on the "make" commandline
  5. INCLUDEDIR = /usr/include 
  6. ifeq ($(DEBUG),y)
  7.   DEBFLAGS = -O -g -DSTEP_DEBUG # "-O" is needed to expand inlines
  8. else
  9.   DEBFLAGS = -O2
  10. endif
  11. CFLAGS = -D__KERNEL__ -DMODULE -Wall $(DEBFLAGS)
  12. CFLAGS += -I$(INCLUDEDIR)
  13. # Extract version number from headers.
  14. VER = $(shell awk -F" '/REL/ {print $$2}' $(INCLUDE)/linux/version.h)
  15. TARGET = stepper
  16. OBJS = $(TARGET).o
  17. all: $(OBJS)
  18. clean:
  19. rm -f *.o *~ core