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

📄 makefile

📁 H。263标准的编解码程序代码
💻
字号:
# Makefile for R263 library functions, a compression library# to H.263 bitstreams.# (C) Copyright 1996, Twente University# All rights reserved. Other copyrights and/or patents may also apply, see# source codeSRCS =	libr263.c dct.c coder.c quant.c mot_est.c pred.c \        countbit.c stream.c huffman.c \	rlib.c \        Makefile manual.tex READMEHDRS = 	libr263.h sim.h macros.h huffman.h ctables.h config.h \        indices.h \	owntypes.h \	rlib.hOBJS =	dct.o coder.o quant.o mot_est.o pred.o  \        countbit.o stream.o huffman.o libr263.o \	rlib.o# use -DLONGISDOUBLEINT if sizeof(long) is 2*sizeof(int) as copy#                       operations with longs are faster than with ints#                       (for instance, Alpha processor, but not for i486)# Use either STANDARDIDCT, FASTIDCT or VERYFASTIDCT for IDCT operations.# Use either STANDARDDCT or FASTDCT for DCT operations.FORMAT = -DFASTDCT -DVERYFASTIDCT CC = gccCFLAGS = -O3 -finline-functions -Winline -funroll-loops -pedantic $(FORMAT) -Wall -Winline -c# If you want to compile with -Wall -pedantic -ansi on a Sun, use # -DBROKEN_SUN_HEADERS to avoid a lot of compiler warningsall: 		rlib.a libr263.a manlibr263.o:	libr263.c libr263.h sim.hcoder.o:	coder.c sim.h libr263.hdct.o:		dct.c sim.h libr263.h quant.o:	quant.c sim.h libr263.hpred.o:		pred.c sim.h libr263.hmot_est.o:	mot_est.c sim.h config.h libr263.hstream.o:	stream.c sim.h libr263.hhuffman.o:	huffman.c huffman.h ctables.h countbit.o:	huffman.c countbit.c huffman.h sim.h indices.h libr263.hman:		manual.tex		latex manual		dvips manualclean:				rm -f $(OBJS) *~ libr263.a rlib.a manual.ps manual.log manual.aux tar:		$(SRCS) $(HDRS)		tar cvf libr263.tar $(SRCS) $(HDRS)		gzip libr263.tarlibr263.a:	$(OBJS)		ar rc libr263.a $(OBJS)rlib.a:		rlib.o		ar rc rlib.a rlib.orlib.o: 	rlib.c rlib.h

⌨️ 快捷键说明

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