makefile.in

来自「linux下流量查看软件,可以查看到每台机子的具体流量」· IN 代码 · 共 51 行

IN
51
字号
exec_prefix = @exec_prefix@prefix = @prefix@CC = @CC@LDFLAGS = @LDFLAGS@ @LIBS@OBS= bandwidthd.o graph.o conf.tab.o conf.l.oCFLAGS= -Wall @CFLAGS@ @CPPFLAGS@ @DEFS@ -DINSTALL_DIR="\"$(exec_prefix)/bandwidthd\""NONWALLCFLAGS= @CFLAGS@ @CPPFLAGS@ @DEFS@# Debugging stuff#CFLAGS += -Wall -pg -DPROFILE#CFLAGS += -Wall -g -DDEBUG all: bandwidthdbandwidthd: $(OBS) bandwidthd.h	$(CC) $(CFLAGS) $(OBS) -o bandwidthd $(LDFLAGS) conf.tab.c: conf.y	@YACC@ -pbdconfig_ -d conf.y	mv y.tab.c conf.tab.c	mv y.tab.h conf.tab.hconf.l.c: conf.l	@LEX@ -Pbdconfig_ -s -i -t -I conf.l > conf.l.cclean:	rm -f *.o bandwidthd *~ 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	@INSTALL@ -d $(DESTDIR)$(exec_prefix)/bandwidthd/etc	@INSTALL@ -d $(DESTDIR)$(exec_prefix)/bandwidthd/htdocs	@INSTALL@ -m755 -s bandwidthd $(DESTDIR)$(exec_prefix)/bandwidthd		if [ ! -f $(DESTDIR)$(exec_prefix)/bandwidthd/etc/bandwidthd.conf ] ; then @INSTALL@ -m644 etc/bandwidthd.conf $(DESTDIR)$(exec_prefix)/bandwidthd/etc/ ; fi	@INSTALL@ -m644 htdocs/legend.gif $(DESTDIR)$(exec_prefix)/bandwidthd/htdocs	@INSTALL@ -m644 htdocs/logo.gif $(DESTDIR)$(exec_prefix)/bandwidthd/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 + =
减小字号Ctrl + -
显示快捷键?