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

📄 makefile

📁 pppd unix下使用的 pppd拨号程序源码
💻
字号:
## debugging flags## -DDEBUGTAC will cause every TACACS+ function report it's progress## and errors to syslog(3)## -lefence links ElectricFence bounds checking library#CFLAGS = -ggdb3 -DDEBUGTAC#LDFLAGS = -ggdb3 -lefence## normal flagsOPTIMIZE = -O2 -m486 -s -WallCFLAGS = $(OPTIMIZE)LDFLAGS = -s## uncomment this if using BIND 8.1#CFLAGS += -D__inet_aton=inet_aton## standard includesCFLAGS += -Iinclude -Ilib -Iextras## uncomment -lutil if using glibc/FreeBSDLDFLAGS += -Llib -ltac -lutil## uncomment this and comment out the above on old FreeBSD installations# LDFLAGS += -lutilOBJ = tacc.oOBJ += extras/getopt.o## uncomment on old FreeBSD installations#OBJ += lib/acct_r.o lib/acct_s.o lib/attrib.o lib/authen_r.o lib/authen_s.o lib/author_r.o lib/author_s.o lib/connect.o lib/crypt.o lib/hdr_check.o lib/header.o lib/magic.o lib/md5.o lib/messages.o lib/version.o lib/xalloc.oLD = gccCC = gccall: tacclibtac: lib	(cd lib; make OPTIMIZE="$(OPTIMIZE)")support: extras 	(cd extras; make)tacc: support libtac tacc.o 	$(LD)  -o tacc $(OBJ) $(LDFLAGS)install: tacc tacc.1	install -s tacc /usr/local/sbin	install tacc.1 /usr/local/man/man1clean:	rm -f *.o tacc	(cd lib; make clean)	(cd extras; make clean)

⌨️ 快捷键说明

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