📄 makefile.in
字号:
SHELL=/bin/shVPATH = @srcdir@srcdir = @srcdir@top_srcdir = @top_srcdir@top_builddir = .prefix = @prefix@bindir = @bindir@mandir = @mandir@#DEFS += -DTIME_SYSCALLS#DEFS += -DDONT_POLLSUBDIRS = lib gen statCC = @CC@RANLIB = @RANLIB@MKDIR = $(top_srcdir)/mkinstalldirsINSTALL = @INSTALL@INSTALL_PROGRAM = @INSTALL_PROGRAM@INSTALL_DATA = @INSTALL_DATA@INCLUDES = -I$(top_builddir) -I$(top_srcdir) -I$(top_srcdir)/libDEFS = @DEFS@CPPFLAGS = @CPPFLAGS@CFLAGS = @CFLAGS@LDFLAGS = @LDFLAGS@LIBS = @LIBS@COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)LINK = $(CC) $(LDFLAGS) -o $@@SET_MAKE@.c.o: $(COMPILE) $<HTTPERF_OBJS = httperf.o object.o call.o conn.o sess.o core.o event.o \ http.o timer.oTTEST_OBJS = ttest.o timer.oall: all-recursive httperf idleconnhttperf: $(HTTPERF_OBJS) gen/libgen.a stat/libstat.a lib/libutil.a $(LINK) $(HTTPERF_OBJS) \ gen/libgen.a stat/libstat.a lib/libutil.a $(LIBS)idleconn: idleconn.o $(LINK) idleconn.o $(LIBS)install: install-recursive httperf $(MKDIR) $(bindir) $(mandir)/man1 $(INSTALL_PROGRAM) httperf $(bindir)/httperf $(INSTALL_DATA) $(srcdir)/httperf.man $(mandir)/man1/httperf.1ttest: ttest.o timer.oclean: clean-recursive rm -f $(HTTPERF_OBJS) $(TTEST_OBJS) idleconn.o httperf idleconn ttestdistclean: distclean-recursive rm -f *~all-recursive install-recursive clean-recursive distclean-recursive \ depend-recursive: @for subdir in $(SUBDIRS); do \ target=`echo $@ | sed s/-recursive//`; \ echo making $$target in $$subdir; \ (cd $$subdir && $(MAKE) $$target) \ || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \ done && test -z "$$fail".PHONY: all install clean distclean depend \ all-recursive install-recursive clean-recursive distclean-recursive \ depend-recursive
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -