📄 makefile
字号:
# 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -