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

📄 makefile

📁 s3c6400 video code,you play video smooth with it,it is hardware codec
💻
字号:
CC = /usr/local/arm/4.2.2-eabi/usr/bin/arm-linux-gcc

#[Definitions]
#FPS : performance measurement. It doesn't make the output file
#ROTATE_ENABLE : rotation mode enable
CFLAGS = -Wall -Os 

CSRCS = ./MPEG4Frames.c 	\
		./H264Frames.c 		\
		./VC1Frames.c 		\
		./H263Frames.c 		\
		./FrameExtractor.c 	\
		./line_buf_test.c 	\
		./ring_buf_test.c 	\
		./encoder_test.c 	\
		./display_test.c 	\
		./demo.c			\
		./performance.c 	\
		./test.c 

OBJS = $(CSRCS:.c=.o)

.SUFFIXES:.c.o

all:	mfc

mfc: $(OBJS)
	$(CC) $(CFLAGS) -g -o $@ $(OBJS)
	
.c.o:
	$(CC) $(CFLAGS) -g -c -o $@ $<

clean:
	rm -f mfc $(OBJS) 

⌨️ 快捷键说明

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