modify file names and create directories

This commit is contained in:
Tomoki Shirasawa
2012-12-17 15:39:24 +09:00
parent 9849cf57b1
commit 158903c7b6
61 changed files with 5542 additions and 0 deletions

24
executer/kernel/Makefile Normal file
View File

@@ -0,0 +1,24 @@
#ifeq ($(K),"current")
KDIR=/lib/modules/`uname -r `/build
#else
#KDIR=../target
#endif
obj-m += mcctrl.o
mcctrl-objs := driver.o control.o ikc.o syscall.o
AALBASE ?= $(src)/../../../aal
EXTRA_CFLAGS = -I$(AALBASE)/host/include -I$(AALBASE)/host/driver/knf -I$(AALBASE)/include -I$(AALBASE)/ikc/include -I$(src)/../include
.PHONY: clean install
modules:
$(MAKE) -C $(KDIR) M=$(PWD) modules
clean:
$(RM) .*.cmd *.mod.c *.o *.ko* Module.symvers modules.order -r .tmp*
install: