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 -DSHORT_DEBUG
  7. else
  8.   DEBFLAGS = -O2
  9. endif
  10. CFLAGS = -D__KERNEL__ -DMODULE -Wall $(DEBFLAGS)
  11. CFLAGS += -I$(INCLUDEDIR)
  12. OBJS = short.o
  13. all: $(OBJS)
  14. skull.o: skull_init.o skull_clean.o
  15. $(LD) -r $^ -o $@
  16. install:
  17. mkdir -p /lib/modules/$(VER)/misc /lib/modules/misc
  18. install -c short.o /lib/modules/$(VER)/misc
  19. install -c short.o /lib/modules/misc
  20. clean:
  21. rm -f *.o *~ core