makefile
来自「君正早期ucos系统(只有早期的才不没有打包成库),MPLAYER,文件系统,图」· 代码 · 共 31 行
TXT
31 行
# Unix makefile for the JBIG-KIT library# $Id: Makefile,v 1.1.1.1 2007/12/04 09:35:33 xliu Exp $# Select an ANSI/ISO C compiler here, GNU gcc is recommendedCC = gcc# Options for the compiler: A high optimization level is suggestedCFLAGS = -O -Wall -ansi -pedanticall: libjbig.a tstcodectstcodec: tstcodec.c jbig.c jbig.h jbig_tab.o $(CC) $(CFLAGS) -o tstcodec -DTEST_CODEC tstcodec.c jbig.c \ jbig_tab.olibjbig.a: jbig.o jbig_tab.o rm -f libjbig.a ar rc libjbig.a jbig.o jbig_tab.o -ranlib libjbig.ajbig.o: jbig.c jbig.htest: tstcodec ./tstcodect82test.pbm: tstcodec ./tstcodec $@clean: rm -f *.o *~ core gmon.out dbg_d\=??.pbm tstcodec t82test.pbm
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?