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

嵌入式Linux

开发平台:

C/C++

  1. # Change it here or specify it on the "make" commandline
  2. INCLUDEDIR = /usr/include
  3. CFLAGS = -D__KERNEL__ -DMODULE -O -Wall -I$(INCLUDEDIR)
  4. # Extract version number from headers.
  5. VER = $(shell awk -F" '/REL/ {print $$2}' $(INCLUDEDIR)/linux/version.h)
  6. OBJS = skull.o
  7. all: $(OBJS)
  8. skull.o: skull_init.o skull_clean.o
  9. $(LD) -r $^ -o $@
  10. install:
  11. install -d /lib/modules/$(VER)/misc /lib/modules/misc
  12. install -c skull.o /lib/modules/$(VER)/misc
  13. install -c skull.o /lib/modules/misc
  14. clean:
  15. rm -f *.o *~ core