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

📄 makefile

📁 libbt-1.01 BT应用软件 是BT客户端的源代码
💻
字号:
# -*- makefile -*-srcdir := .top_srcdir := ..CC:=gccAR:=arRANLIB:=ranlibPROGRAMS:=btlist btget btcheckLIBBT:=libbt.aSRCS:=\	benc.c \	bts.c \	types.c \	random.c \	strbuf.c \	stream.c \	peer.c \	segmenter.c \	util.c \	bitset.c \	context.c \	bterror.cOBJS:= ${SRCS:.c=.o}CPPFLAGS:=CFLAGS:=-g -Wall -I../include -I$(top_srcdir)/includeLIBS:=-luuid -lssl -lcurl  `curl-config --libs` -lmLDFLAGS:=-g -L. all: ${LIBBT} ${PROGRAMS}docs: 	doxygen *.cdepend:	makedepend -- ${CFLAGS} - ${SRCS} btcheck: libbt.a btcheck.o	${CC} ${LDFLAGS} -o btcheck btcheck.o -lbt ${LIBS}btlist: ${LIBBT} btlist.o	${CC} ${LDFLAGS} -o btlist btlist.o -lbt ${LIBS}btget: ${LIBBT} btget.o	${CC} ${LDFLAGS} -o btget btget.o -lbt ${LIBS}clean:	rm -f ${OBJS} btcheck.o btlist.o btget.odistclean: clean	rm -f ${PROGRAMS} ${LIBBT}	cp Makefile.default Makefilelibbt.a: ${OBJS}	${AR} rc $@ ${OBJS}	${RANLIB} $@.c.o:	${CC} -c ${CFLAGS} ${CPPFLAGS} $< -o $@# DO NOT DELETEbenc.o: ../include/config.h ../include/benc.h ../include/types.hbenc.o: ../include/util.h ../include/bts.hbitset.o: ../include/config.h ../include/bitset.h ../include/random.hblock.o: ../include/config.hbtcheck.o: ../include/config.h ../include/types.h ../include/util.hbtcheck.o: ../include/benc.h ../include/bts.h ../include/segmenter.hbtcheck.o: ../include/bitset.h ../include/context.h ../include/peer.hbtcheck.o: ../include/stream.h ../include/strbuf.hbterror.o: ../include/bterror.hbtget.o: ../include/config.h ../include/bts.h ../include/types.hbtget.o: ../include/util.h ../include/benc.h ../include/random.hbtget.o: ../include/peer.h ../include/stream.h ../include/strbuf.hbtget.o: ../include/bitset.h ../include/segmenter.h ../include/context.hbtget.o: ../include/bterror.hbtlist.o: ../include/config.h ../include/bts.h ../include/types.hbtlist.o: ../include/util.h ../include/benc.hbts.o: ../include/config.h ../include/bts.hcontext.o: ../include/config.h ../include/context.h ../include/types.hcontext.o: ../include/util.h ../include/segmenter.h ../include/bitset.hcontext.o: ../include/peer.h ../include/stream.h ../include/strbuf.hcontext.o: ../include/bts.h ../include/benc.h ../include/random.hpeer.o: ../include/config.h ../include/bterror.h ../include/btmessage.hpeer.o: ../include/peer.h ../include/stream.h ../include/strbuf.hpeer.o: ../include/bitset.h ../include/segmenter.h ../include/util.hpeer.o: ../include/context.h ../include/types.hrandom.o: ../include/config.hsegmenter.o: ../include/config.h ../include/util.h ../include/segmenter.hsegmenter.o: ../include/bitset.hstrbuf.o: ../include/config.h ../include/strbuf.hstream.o: ../include/config.h ../include/bterror.h ../include/stream.hstream.o: ../include/strbuf.h ../include/util.htypes.o: ../include/config.h ../include/types.h ../include/util.hutil.o: ../include/config.h ../include/bterror.h ../include/util.h

⌨️ 快捷键说明

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