📄 makefile.in
字号:
# This file is part of the FreeType project.## test/arch/unix/Makefile.in### Copyright 1996-2001 by# David Turner, Robert Wilhelm, and Werner Lemberg.## This file is part of the FreeType project, and may only be used, modified,# and distributed under the terms of the FreeType project license,# LICENSE.TXT. By continuing to use, modify, or distribute this file you# indicate that you have read the license and understand and accept it# fully.ARCH = arch/unixtop_builddir=..VPATH = @srcdir@/../..srcdir = @srcdir@/../..RM = @RM@RMF = @RM@ -fRMDIR = @RMDIR@INSTALL = @INSTALL@INSTALL_PROGRAM = @INSTALL_PROGRAM@CC = @CC@CPP = @CPP@LIBTOOL = $(top_builddir)/libtoolMKINSTALLDIRS = $(srcdir)/../mkinstalldirsinclude $(top_builddir)/MakeSubFT_LIBDIR = $(srcdir)/../libINCDIRS = -I. -I$(srcdir) -I$(top_builddir) \ -I$(FT_LIBDIR) -I$(FT_LIBDIR)/extendCFLAGS = @CFLAGS@ @X_CFLAGS@ @XX_CFLAGS@CPPFLAGS = @CPPFLAGS@FT_CFLAGS = $(INCDIRS) $(CFLAGS) $(CPPFLAGS) -DX11 -DLOCALEDIR='"@LOCALEDIR@"'FT_LIBS = @X_LIBS@ @X_PRE_LIBS@ @X_EXTRA_LIBS@ @LIBS@SRC = $(srcdir)/arabic.c \ $(srcdir)/common.c \ $(srcdir)/textdisp.c \ $(srcdir)/ftdump.c \ $(srcdir)/fterror.c \ $(srcdir)/ftlint.c \ $(srcdir)/ftmetric.c \ $(srcdir)/ftsbit.c \ $(srcdir)/ftstring.c \ $(srcdir)/ftstrpnm.c \ $(srcdir)/fttimer.c \ $(srcdir)/ftview.c \ $(srcdir)/ftzoom.c \ $(srcdir)/ftstrtto.c \ $(srcdir)/gmain.c \ $(srcdir)/$(ARCH)/gwin_x11.cDISPOBJS = common.o gmain.o display.o gwin_x11.o blitter.oPROGRAMS = ftdump fterror ftlint ftmetric ftsbit ftstrpnmX_PROGRAMS = ftstring ftstrtto fttimer ftview ftzoomALL_PROGRAMS = $(PROGRAMS) @X_PROGRAMS@# set this variable to nil if you don't need to use Electric-FenceEFENCE =#EFENCE = -lefence# variables used to compile either with libtool or not#PROCESS = $(LIBTOOL) --mode=link $(CC) $(FT_CFLAGS)#PROCESS = $(CC) $(FT_CFLAGS)LIBTTF = $(top_builddir)/lib/libttf.la#LIBTTF =$(top_builddir)/lib/libttf.a.c.o: $(CC) -c $(FT_CFLAGS) $<all: $(ALL_PROGRAMS)gwin_x11.o: $(srcdir)/$(ARCH)/gwin_x11.c $(CC) -c $(FT_CFLAGS) $(srcdir)/$(ARCH)/gwin_x11.cftzoom: ftzoom.o $(DISPOBJS) $(LIBTTF) $(PROCESS) -o ftzoom ftzoom.o $(DISPOBJS) \ $(EFENCE) $(LIBTTF) $(FT_LIBS) -lX11fttimer: fttimer.o $(DISPOBJS) $(LIBTTF) $(PROCESS) -o fttimer fttimer.o $(DISPOBJS) \ $(EFENCE) $(LIBTTF) $(FT_LIBS) -lX11ftview: ftview.o $(DISPOBJS) $(LIBTTF) $(PROCESS) -o ftview ftview.o $(DISPOBJS) \ $(EFENCE) $(LIBTTF) $(FT_LIBS) -lX11ftlint: ftlint.o common.o $(LIBTTF) $(PROCESS) -o ftlint ftlint.o common.o \ $(EFENCE) $(LIBTTF) $(FT_LIBS)ftdump: ftdump.o common.o $(LIBTTF) $(PROCESS) -o ftdump ftdump.o common.o \ $(EFENCE) $(LIBTTF) $(FT_LIBS)ftmetric: ftmetric.o common.o textdisp.o $(LIBTTF) $(PROCESS) -o ftmetric ftmetric.o common.o textdisp.o \ $(EFENCE) $(LIBTTF) $(FT_LIBS)ftsbit: ftsbit.o common.o textdisp.o $(LIBTTF) $(PROCESS) -o ftsbit ftsbit.o common.o textdisp.o \ $(EFENCE) $(LIBTTF)ftstring: ftstring.o $(DISPOBJS) $(LIBTTF) $(PROCESS) -o ftstring ftstring.o $(DISPOBJS) \ $(EFENCE) $(LIBTTF) $(FT_LIBS) -lX11ftstrpnm: ftstrpnm.o common.o $(LIBTTF) $(PROCESS) -o ftstrpnm ftstrpnm.o common.o \ $(EFENCE) $(LIBTTF)fterror: fterror.o common.o $(LIBTTF) $(PROCESS) -o fterror fterror.o common.o \ $(EFENCE) $(LIBTTF) $(FT_LIBS)ftstrtto: ftstrtto.o $(DISPOBJS) arabic.o $(LIBTTF) $(PROCESS) -o ftstrtto ftstrtto.o $(DISPOBJS) arabic.o \ $(EFENCE) $(LIBTTF) $(FT_LIBS) -lX11install: $(ALL_PROGRAMS) $(MKINSTALLDIRS) $(bindir) for P in $(ALL_PROGRAMS) ; do \ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$P $(bindir)/$$P ; \ doneuninstall: -for P in $(ALL_PROGRAMS) ; do \ $(LIBTOOL) --mode=uninstall $(RM) $(bindir)/$$P ; \ doneclean: do_cleandistclean: do_clean -$(RMF) $(ALL_PROGRAMS) -$(RMF) *~ *.orig core *.core -$(RMF) config.cache config.log config.status -$(RMF) $(ARCH)/Makefile -$(RMF) .libs/* -$(RMDIR) .libsdo_clean: -$(RMF) *.odepend: (echo '/^#.* PUT NO STUFF BELOW/,$$d' ; echo w ; echo q) | \ ed - $(ARCH)/Makefile echo '# Dependencies generated by make depend: PUT NO STUFF BELOW' \ >> $(ARCH)/Makefile for file in $(SRC) ; do \ $(CPP) $(CPPFLAGS) $(INCDIRS) $$file | \ sed -n -e 's|^# [1-9][0-9]* "\([^/].*\.h\)".*|\1|p' \ -e 's|^# [1-9][0-9]* "\($(srcdir)/.*\.h\)".*|\1|p' | \ sed -e 's|/\./|.|g' -e "s/^/`basename $$file .c`.o: /" ; \ done | \ sort -u | \ awk '{ if (LINE == 1) \ { line = last = $$1 } \ else if ($$1 != last) \ { print line ; line = last = $$1 } \ line = line " " $$2 } \ END { print line }' >> $(ARCH)/Makefile.PHONY: all install uninstall clean distclean do_clean depend# Dependencies generated by make depend: PUT NO STUFF BELOW
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -