📄 makefile
字号:
#***************************************************************************# Makefile - SNOOP Makefile# -------------------# last updated : March 25 2003# copyright : (C) 2002 by Indradeep Biswas# email : indradee@comp.nus.edu.sg#***************************************************************************# Comment/uncomment the following line to enable/disable debugging printoutsDEBUG = yRELEASE = 1.0.0ifndef KERNELDIRKERNELDIR = /usr/src/linuxendififndef INCLUDEDIRINCLUDEDIR = $(KERNELDIR)/includeendififeq ($(DEBUG),y) DEBFLAGS = -D__SNOOP_DEBUG__ -Oelse DEBFLAGS = -O2endifCFLAGS = -D__KERNEL__ -DMODULE $(DEBFLAGS) -Wall CFLAGS += -I$(INCLUDEDIR)OBJS = snoop.o#temporary all till I figure out how the client works.all: $(OBJS)clean: rm -f *.o $(CLIENTS) *~ core
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -