makefile
来自「一种无线拥塞控制协议」· 代码 · 共 39 行
TXT
39 行
#***************************************************************************# 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 + =
减小字号Ctrl + -
显示快捷键?