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

📄 makefile.gprof

📁 A free MS Word reader for Linux and RISC OS. Antiword converts the files from Word 2, 6, 7, 97, 2000
💻 GPROF
字号:
## Makefile for antiword (Linux version)## Used for profiling (gprof)#CC	= gccLD	= gcc# must be equal to DEBUG or NDEBUGDB	= NDEBUG# Optimization: -O<n> or debugging: -gOPT	= -O2LDLIBS	=CFLAGS	= -pg -Wall -pedantic $(OPT) -D$(DB)LDFLAGS	= -pgOBJS	=\	main_u.o asc85enc.o blocklist.o chartrans.o datalist.o depot.o\	dib2eps.o doclist.o fail.o finddata.o findtext.o fmt_text.o fontlist.o\	fonts.o fonts_u.o hdrftrlist.o imgexam.o imgtrans.o jpeg2eps.o\	listlist.o misc.o notes.o options.o out2window.o output.o pdf.o\	pictlist.o png2eps.o postscript.o prop0.o prop2.o prop6.o prop8.o\	properties.o propmod.o rowlist.o sectlist.o stylelist.o stylesheet.o\	summary.o tabstop.o text.o unix.o utf8.o word2text.o worddos.o\	wordlib.o wordmac.o wordole.o wordwin.o xmalloc.o xml.oPROGS =\	antiword\	kantiwordINSTALL_DIR = $(HOME)/binall:		$(PROGS)install:	all	[ -d $(INSTALL_DIR) ] || mkdir $(INSTALL_DIR)	cp -pf $(PROGS) $(INSTALL_DIR)clean:	rm -f $(OBJS)	rm -f $(PROGS)antiword:	$(OBJS)	@rm -f $@	$(LD) $(LDFLAGS) $(OBJS) $(LDLIBS) -o $@	@chmod 750 $@kantiword:	Unix-only/KDE3-only/kantiword.sh	@rm -f $@	echo "#!/bin/bash" > $@	cat $? >> $@	@chmod 750 $@.c.o:	$(CC) $(CFLAGS) -c $<main_u.o:	version.hpostscript.o:	version.hpdf.o:		version.hfonts_u.o:	fontinfo.hfontinfo.h:	Unix-only/fontinfo.h		cp -rp $? $@Unix-only/fontinfo.h:	Unix-only/fontinfo.pl	Unix-only/fontinfo.pl > Unix-only/fontinfo.h

⌨️ 快捷键说明

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