?? makefile
字號:
# Comment/uncomment the following line to enable/disable debugging#DEBUG = y# Change it here or specify it on the "make" commandlineINCLUDEDIR = /usr/includeifeq ($(DEBUG),y) DEBFLAGS = -O -g -DSHORT_DEBUGelse DEBFLAGS = -O2endifCFLAGS = -D__KERNEL__ -DMODULE -Wall $(DEBFLAGS)CFLAGS += -I$(INCLUDEDIR)OBJS = short.oall: $(OBJS)skull.o: skull_init.o skull_clean.o $(LD) -r $^ -o $@install: mkdir -p /lib/modules/$(VER)/misc /lib/modules/misc install -c short.o /lib/modules/$(VER)/misc install -c short.o /lib/modules/miscclean: rm -f *.o *~ core
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -