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

📄 makefile

📁 linux c开发的网络端口检测工具,应用在报警,扫描方面
💻
字号:
exec_prefix = ${prefix}prefix = /root/embedCC = /usr/arm/arm-linux-gccLDFLAGS = -L/root/embed/lib -L/usr/X11R6/lib -L/usr/local/lib -lpcap -lgd -lpng -lm -lresolv -lnsl OBS= netwolf.o graph.o conf.tab.o conf.l.oCFLAGS= -Wall -g -O2 -I/root/embed/include -DHAVE_CONFIG_H -DINSTALL_DIR="\"$(exec_prefix)/netwolf\""NONWALLCFLAGS= -g -O2  -I/root/embed/include -DHAVE_CONFIG_H# Debugging stuff#CFLAGS += -Wall -pg -DPROFILE#CFLAGS += -Wall -g -DDEBUG all: netwolfnetwolf: $(OBS) netwolf.h	$(CC) $(CFLAGS) $(OBS) -o netwolf $(LDFLAGS) conf.tab.c: conf.y	bison -y -pbdconfig_ -d conf.y	mv y.tab.c conf.tab.c	mv y.tab.h conf.tab.hconf.l.c: conf.l	flex -Pbdconfig_ -s -i -t -I conf.l > conf.l.cclean:	rm -f *.o netwolf *~ DEADJOE core# Resets us to distributable codedist-clean: conf.tab.c conf.l.c clean	rm -f config.h config.log config.status Makefile# Deletes all derived files# You must have flex, bison, and autoconf to build the source if you run this# Before you can do anything after running this you must run "autoheader; autoconf"real-clean: dist-clean	rm -f conf.tab.c conf.tab.h conf.l.c config.h.in configure install: all	/usr/bin/install -c -d $(DESTDIR)$(exec_prefix)/netwolf/etc	/usr/bin/install -c -d $(DESTDIR)$(exec_prefix)/netwolf/htdocs	/usr/bin/install -c -m755 -s netwolf $(DESTDIR)$(exec_prefix)/netwolf		if [ ! -f $(DESTDIR)$(exec_prefix)/netwolf/etc/netwolf.conf ] ; then /usr/bin/install -c -m644 etc/netwolf.conf $(DESTDIR)$(exec_prefix)/netwolf/etc/ ; fi	/usr/bin/install -c -m644 htdocs/legend.gif $(DESTDIR)$(exec_prefix)/netwolf/htdocs	/usr/bin/install -c -m644 htdocs/logo.gif $(DESTDIR)$(exec_prefix)/netwolf/htdocs#**** Stuff where -WALL is turned off to reduce the noise in a compile so I can see my own errors *******************conf.l.o: conf.l.c	$(CC) $(NONWALLCFLAGS) -c -o conf.l.o conf.l.c	

⌨️ 快捷键说明

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