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

嵌入式Linux

开发平台:

C/C++

  1. # Comment/uncomment the following line to enable/disable debugging
  2. #DEBUG = y
  3. # Change it here or specify it on the "make" commandline
  4. INCLUDEDIR = /usr/include
  5. ifeq ($(DEBUG),y)
  6.   DEBFLAGS = -O -g -DSBULL_DEBUG # "-O" is needed to expand inlines
  7. else
  8.   DEBFLAGS = -O2
  9. endif
  10. CFLAGS = -D__KERNEL__ -DMODULE -Wall $(DEBFLAGS)
  11. CFLAGS += -I$(INCLUDEDIR)
  12. # Extract version number from headers.
  13. VER = $(shell awk -F" '/REL/ {print $$2}' $(INCLUDEDIR)/linux/version.h)
  14. TARGET = sbull
  15. OBJS = $(TARGET).o
  16. SRC = $(TARGET).c
  17. all: .depend $(TARGET).o
  18. install:
  19. mkdir -p /lib/modules/$(VER)/misc /lib/modules/misc
  20. install -c $(TARGET).o /lib/modules/$(VER)/misc
  21. install -c $(TARGET).o /lib/modules/misc
  22. clean:
  23. rm -f *.o *~ core .depend
  24. depend .depend dep:
  25. $(CC) $(CFLAGS) -M *.c > $@
  26. ifeq (.depend,$(wildcard .depend))
  27. include .depend
  28. endif