makefile.in

来自「ccache 是一个快速的编译器缓存。当您编译一个程序的时候」· IN 代码 · 共 55 行

IN
55
字号
srcdir=@srcdir@VPATH=@srcdir@prefix=@prefix@exec_prefix=@exec_prefix@bindir=@bindir@mandir=@mandir@INSTALLCMD=@INSTALL@CC=@CC@CFLAGS=@CFLAGS@ -I.EXEEXT=@EXEEXT@OBJS= ccache.o mdfour.o hash.o execute.o util.o args.o stats.o \	cleanup.o snprintf.o unify.oHEADERS = ccache.h mdfour.hall: ccache$(EXEEXT)docs: ccache.1 web/ccache-man.htmlccache$(EXEEXT): $(OBJS) $(HEADERS)	$(CC) $(CFLAGS) -o $@ $(OBJS)ccache.1: ccache.yo	-yodl2man -o ccache.1 ccache.yoweb/ccache-man.html: ccache.yo	mkdir -p man	yodl2html -o web/ccache-man.html ccache.yoinstall: ccache$(EXEEXT) ccache.1	${INSTALLCMD} -d $(DESTDIR)${bindir}	${INSTALLCMD} -m 755 ccache$(EXEEXT) $(DESTDIR)${bindir}	${INSTALLCMD} -d $(DESTDIR)${mandir}/man1	${INSTALLCMD} -m 644 ${srcdir}/ccache.1 $(DESTDIR)${mandir}/man1/clean:	/bin/rm -f $(OBJS) *~ ccache$(EXEEXT)test: test.sh	./test.shcheck: test.sh	./test.shdistclean: clean	/bin/rm -f Makefile config.h config.sub config.log build-stamp config.status# FIXME: To fix this, test.sh needs to be able to take ccache from the# installed prefix, not from the source dir.installcheck: 	@echo "WARNING!  This is not really \"installcheck\" yet."	$(MAKE) check

⌨️ 快捷键说明

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