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

📄 ltmakefile.in

📁 harvest是一个下载html网页得机器人
💻 IN
字号:
# Makefile to build QDBM using libtool#================================================================# Setting Variables#================================================================# Generic settingsSHELL = @SHELL@# PackagingPACKAGE = @PACKAGE_NAME@VERSION = @PACKAGE_VERSION@# TargetsMYHEADS = depot.h curia.h relic.h hovel.h cabin.h villa.h vista.h odeum.hMYLIBOBJS = depot.lo curia.lo relic.lo hovel.lo cabin.lo villa.lo vista.lo odeum.lo myconf.loMYLIBS = libqdbm.laMYBINS = dpmgr dptest dptsv crmgr crtest crtsv rlmgr rltest hvmgr hvtest \  cbtest cbcodec vlmgr vltest vltsv odmgr odtest odidxMYMAN3S = qdbm.3 depot.3 dpopen.3 curia.3 cropen.3 relic.3 hovel.3 \  cabin.3 villa.3 vlopen.3 vista.3 odeum.3 odopen.3MYDOCS = spex.html spex-ja.html COPYING ChangeLog THANKS# Install destinationsprefix = @prefix@exec_prefix = @exec_prefix@MYHEADDIR = @includedir@MYLIBDIR = @libdir@MYBINDIR = @bindir@MYMAN3DIR = @mandir@/man3MYSHAREDIR = $(prefix)/share/$(PACKAGE)# Building binariesLIBTOOL = libtoolCC = gccCFLAGS = -I. @MYDEFS@ -D_GNU_SOURCE \  -D__EXTENSIONS__ -D_POSIX_C_SOURCE=200112 -D__XSI_VISIBLE -DPIC -D_REENTRANT -O3LD = gccLIBLDFLAGS = -rpath $(MYLIBDIR) -R $(MYLIBDIR) -version-info 1:0:0 @LIBS@LDFLAGS = -rpath $(MYLIBDIR) -R $(MYLIBDIR) -L. -lqdbm @LIBS@INSTALL = installMKDIR = mkdir -pCP = cp -rfRM = rm -rf#================================================================# Suffix rules#================================================================.SUFFIXES :.SUFFIXES : .c .lo.c.lo :	$(LIBTOOL) --mode=compile --tag=CC $(CC) -c $(CFLAGS) $<#================================================================# Actions#================================================================all : $(MYLIBS) $(MYBINS)	@printf '\n'	@printf '#================================================================\n'	@printf '# Ready to install.\n'	@printf '#================================================================\n'clean :	$(RM) $(MYLIBS) $(MYBINS) *.o *.lo *.la a.out .libs \	  *.exe *.dll.a *.dll TAGS srcdoc gmon.out leak.log casket casket.* *~install :	$(LIBTOOL) --mode=install $(INSTALL) $(MYHEADS) $(MYHEADDIR)	$(LIBTOOL) --mode=install $(INSTALL) $(MYLIBS) $(MYLIBDIR)	$(LIBTOOL) --mode=install $(INSTALL) $(MYBINS) $(MYBINDIR)	$(MKDIR) $(MYMAN3DIR)	cd man && $(CP) $(MYMAN3S) $(MYMAN3DIR)	$(MKDIR) $(MYSHAREDIR)	$(CP) $(MYDOCS) $(MYSHAREDIR)	@printf '\n'	@printf '#================================================================\n'	@printf '# Thanks for using QDBM.\n'	@printf '#================================================================\n'uninstall :	cd $(MYHEADDIR) && $(LIBTOOL) --mode=uninstall $(RM) $(MYHEADS)	cd $(MYLIBDIR) && $(LIBTOOL) --mode=uninstall $(RM) $(MYLIBS)	cd $(MYBINDIR) && $(LIBTOOL) --mode=uninstall $(RM) $(MYBINS)	cd $(MYMAN3DIR) && $(RM) $(MYMAN3S)	$(RM) $(MYSHAREDIR)distclean : clean	$(RM) Makefile LTmakefile rpmspec config.cache config.log config.status autom4te.cachecheck :	$(RM) casket*	$(LIBTOOL) --mode=execute ./dptest write casket 50000 5000	$(LIBTOOL) --mode=execute ./dptest read casket	$(LIBTOOL) --mode=execute ./dptest rcat casket 50000 50 500 32	$(LIBTOOL) --mode=execute ./dptest combo casket	$(LIBTOOL) --mode=execute ./dptest wicked casket 5000	$(RM) casket*	$(LIBTOOL) --mode=execute ./crtest write casket 50000 500 10	$(LIBTOOL) --mode=execute ./crtest read casket	$(LIBTOOL) --mode=execute ./crtest rcat casket 50000 5 10 500 32	$(LIBTOOL) --mode=execute ./crtest combo casket	$(LIBTOOL) --mode=execute ./crtest wicked casket 5000	$(RM) casket*	$(LIBTOOL) --mode=execute ./crtest write -lob casket 1000 50 10	$(LIBTOOL) --mode=execute ./crtest read -lob casket	$(RM) casket*	$(LIBTOOL) --mode=execute ./rltest write casket 50000	$(LIBTOOL) --mode=execute ./rltest read casket 50000	$(RM) casket*	$(LIBTOOL) --mode=execute ./hvtest write casket 50000	$(LIBTOOL) --mode=execute ./hvtest read casket 50000	$(RM) casket*	$(LIBTOOL) --mode=execute ./hvtest write -qdbm casket 50000	$(LIBTOOL) --mode=execute ./hvtest read -qdbm casket 50000	$(RM) casket*	$(LIBTOOL) --mode=execute ./cbtest sort 5000	$(LIBTOOL) --mode=execute ./cbtest list 50000	$(LIBTOOL) --mode=execute ./cbtest map 50000	$(LIBTOOL) --mode=execute ./cbtest wicked 5000	$(LIBTOOL) --mode=execute ./cbtest misc	$(RM) casket*	$(LIBTOOL) --mode=execute ./vltest write -tune 32 31 32 32 casket 50000	$(LIBTOOL) --mode=execute ./vltest read casket	$(LIBTOOL) --mode=execute ./vltest rdup -tune 32 31 512 256 casket 50000 50000	$(LIBTOOL) --mode=execute ./vltest combo casket	$(LIBTOOL) --mode=execute ./vltest wicked casket 5000	$(RM) casket*	$(LIBTOOL) --mode=execute ./odtest write casket 500 50 5000	$(LIBTOOL) --mode=execute ./odtest read casket	$(LIBTOOL) --mode=execute ./odtest combo casket	$(LIBTOOL) --mode=execute ./odtest wicked casket 500	$(RM) casket*	@printf '\n'	@printf '#================================================================\n'	@printf '# Checking completed.\n'	@printf '#================================================================\n'.PHONY : all clean install check#================================================================# Building binaries#================================================================libqdbm.la : $(MYLIBOBJS)	$(LIBTOOL) --mode=link --tag=CC $(LD) $(MYLIBOBJS) -o $@ $(LIBLDFLAGS)dpmgr : dpmgr.lo $(MYLIBS)	$(LIBTOOL) --mode=link --tag=CC $(LD) -o $@ dpmgr.lo $(LDFLAGS)dptest : dptest.lo $(MYLIBS)	$(LIBTOOL) --mode=link --tag=CC $(LD) -o $@ dptest.lo $(LDFLAGS)dptsv : dptsv.lo $(MYLIBS)	$(LIBTOOL) --mode=link --tag=CC $(LD) -o $@ dptsv.lo $(LDFLAGS)crmgr : crmgr.lo $(MYLIBS)	$(LIBTOOL) --mode=link --tag=CC $(LD) -o $@ crmgr.lo $(LDFLAGS)crtest : crtest.lo $(MYLIBS)	$(LIBTOOL) --mode=link --tag=CC $(LD) -o $@ crtest.lo $(LDFLAGS)crtsv : crtsv.lo $(MYLIBS)	$(LIBTOOL) --mode=link --tag=CC $(LD) -o $@ crtsv.lo $(LDFLAGS)rlmgr : rlmgr.lo $(MYLIBS)	$(LIBTOOL) --mode=link --tag=CC $(LD) -o $@ rlmgr.lo $(LDFLAGS)rltest : rltest.lo $(MYLIBS)	$(LIBTOOL) --mode=link --tag=CC $(LD) -o $@ rltest.lo $(LDFLAGS)hvmgr : hvmgr.lo $(MYLIBS)	$(LIBTOOL) --mode=link --tag=CC $(LD) -o $@ hvmgr.lo $(LDFLAGS)hvtest : hvtest.lo $(MYLIBS)	$(LIBTOOL) --mode=link --tag=CC $(LD) -o $@ hvtest.lo $(LDFLAGS)cbtest : cbtest.lo $(MYLIBS)	$(LIBTOOL) --mode=link --tag=CC $(LD) -o $@ cbtest.lo $(LDFLAGS)cbcodec : cbcodec.lo $(MYLIBS)	$(LIBTOOL) --mode=link --tag=CC $(LD) -o $@ cbcodec.lo $(LDFLAGS)vlmgr : vlmgr.lo $(MYLIBS)	$(LIBTOOL) --mode=link --tag=CC $(LD) -o $@ vlmgr.lo $(LDFLAGS)vltest : vltest.lo $(MYLIBS)	$(LIBTOOL) --mode=link --tag=CC $(LD) -o $@ vltest.lo $(LDFLAGS)vltsv : vltsv.lo $(MYLIBS)	$(LIBTOOL) --mode=link --tag=CC $(LD) -o $@ vltsv.lo $(LDFLAGS)odmgr : odmgr.lo $(MYLIBS)	$(LIBTOOL) --mode=link --tag=CC $(LD) -o $@ odmgr.lo $(LDFLAGS)odtest : odtest.lo $(MYLIBS)	$(LIBTOOL) --mode=link --tag=CC $(LD) -o $@ odtest.lo $(LDFLAGS)odidx : odidx.lo $(MYLIBS)	$(LIBTOOL) --mode=link --tag=CC $(LD) -o $@ odidx.lo $(LDFLAGS)depot.lo dpmgr.lo dptest.lo dptsv.lo : depot.h myconf.hcuria.lo crmgr.lo crtest.lo crtsv.lo : curia.h depot.h myconf.hrelic.lo rlmgr.lo rltest.lo : relic.h depot.h myconf.hhovel.lo hvmgr.lo hvtest.lo : hovel.h depot.h curia.h myconf.hcabin.lo cbtest.lo : cabin.h myconf.hvilla.lo vlmgr.lo vltest.lo vltsv.lo : villa.h depot.h cabin.h myconf.hvista.lo : vista.h villa.h depot.h curia.h cabin.h myconf.hodeum.lo odmgr.lo odtest.lo odidx.lo : odeum.h depot.h curia.h cabin.h villa.h myconf.hmyconf.lo : myconf.h# END OF FILE

⌨️ 快捷键说明

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