⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 802.1x 源码,基于linux平台开发
💻
字号:
CC=xscale_be-gcc
#CC=gcc

ifndef CFLAGS
CFLAGS = -O2 -Wall -g
endif

# If you want to support multiple radius server for multiple bssid, add following line
#CFLAGS +=  -DMULTIPLE_RADIUS

# If you want to debug daemon, add following line
#CFLAGS +=  -DDBG

OBJS =	rt61apd.o eloop.o eapol_sm.o radius.o md5.o  \
	config.o ieee802_1x.o  \
	sta_info.o   radius_client.o mac2port.o

CLIENTOBJS = dot1x_init.o

all: rt61apd dot1x_init.a

rt61apd: $(OBJS)
	$(CC) -o 8021x $(OBJS)

dot1x_init.a: $(CLIENTOBJS)
	$(AR) rv $@ $?
	
clean:
	rm -f core *~ *.o dot1xd *.d *.a

-include $(OBJS:%.o=%.d)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -