📄 makefile.in
字号:
# regress/Makefile[.in] - regression test Makefile# # This file is part of adns, which is# Copyright (C) 1997-2000,2003,2006 Ian Jackson# Copyright (C) 1999-2000,2003,2006 Tony Finch# Copyright (C) 1991 Massachusetts Institute of Technology# (See the file INSTALL for full details.)# # This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.# # This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details.# # You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software Foundation,# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. srcdir= @srcdir@VPATH= @srcdir@PROGS_SYSDEP= @PROGS_HAVE_TSEARCH@CLIENTS= adnstest adnshost adnslogres $(PROGS_SYSDEP)AUTOCHDRS= harness.h hsyscalls.h hredirect.hAUTOCSRCS= hrecord.c hplayback.c hcommon.cinclude $(srcdir)/../settings.makeinclude $(srcdir)/../src/adns.makeDIRCFLAGS= -I$(srcdir)/../srcHCPPFLAGS= -DADNS_REGRESS_TEST -I.REDIRLIBOBJS= $(addsuffix _d.o, $(basename $(LIBOBJS)))HARNLOBJS= hcommon.o $(REDIRLIBOBJS)TARGETS= $(addsuffix _record, $(CLIENTS)) $(addsuffix _playback, $(CLIENTS))ADH_OBJS= adh-main_c.o adh-opts_c.o adh-query_c.oALL_OBJS= $(HARNLOBJS) dtest.o hrecord.o hplayback.o.PRECIOUS: $(AUTOCSRCS) $(AUTOCHDRS)all install uninstall: $(TARGETS)check: $(TARGETS) ./checkallLINK_CMD= $(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@%_record: %_c.o hrecord.o $(HARNLOBJS) $(LINK_CMD)%_playback: %_c.o hplayback.o $(HARNLOBJS) $(LINK_CMD)adnshost_%: $(ADH_OBJS) h%.o $(HARNLOBJS) $(LINK_CMD)%_d.o: $(srcdir)/../src/%.c hredirect.h $(CC) $(CFLAGS) $(HCPPFLAGS) -c -g -o $@ $<%_c.o: $(srcdir)/../client/%.c hredirect.h $(CC) $(CFLAGS) $(HCPPFLAGS) -I $(srcdir)/../src -c -g -o $@ $<$(ALL_OBJS): $(srcdir)/../src/adns.h $(srcdir)/../src/internal.h$(ALL_OBJS): harness.h hsyscalls.h$(ADH_OBJS): $(srcdir)/../client/adnshost.h%:: %.m4 hmacros.i4 hsyscalls.i4 $(M4) -P $< >$@-a.new sed -e 's/hm_comma/,/g; s/hm_squote/'\''/g; /^[ ]*$$/d' <$@-a.new >$@-b.new @mv -f $@-b.new $@; rm -f $@-a.new
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -