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

📄 makefile.in

📁 source code: Covert TXT to PDF
💻 IN
字号:
# Makefile.in# # This file is part of the t1lib-package! See documentation and Readme files# of the t1lib-package for copyright restrictions.## Targets provided: #                      all (default)#                      install#                      uninstall#                      clean## Author:              Rainer Menzner (Rainer.Menzner@web.de)# Date:                02/19/1997# Last modified:       2001-04-01## Modified by H.Kakugawa to use libtoolLIBTOOL   = ../libtoolSHELL     = /bin/shCC        = @CC@CPP       = @CPP@CFLAGS    = @CFLAGS@OPTIONS   = @OPTIONS@X_LIBS    = @X_LIBS@TOPSRC    = @top_srcdir@XPM_LIB   = -lXpmXLIB      = @X_PRE_LIBS@ -lXext -lX11 @X_EXTRA_LIBS@LDFLAGS   = @LDFLAGS@LDLIBS    = @LDLIBS@ AR        = ar rcRANLIB    = @RANLIB@RM        = rm -fX_CFLAGS  = @X_CFLAGS@YACC      = @YACC@LEX       = @LEX@LEXLIB    = @LEXLIB@ALLCFLAGS = $(CFLAGS)SUBMAKE   = $(MAKE) 'CC=$(CC)' 'CFLAGS=$(ALLCFLAGS)' 'OPTIONS=$(OPTIONS)'@SET_MAKE@INSTALL         = @INSTALL@INSTALL_PROGRAM = @INSTALL_PROGRAM@INSTALL_DATA    = @INSTALL_DATA@MKINSTALLDIRS   = @top_srcdir@/ac-tools/mkinstalldirsprefix          = @prefix@exec_prefix     = @exec_prefix@includedir      = @includedir@bindir          = @bindir@datadir         = @datadir@libdir          = @libdir@mandir          = @mandir@/man1manext          = .1no_x            = @no_x@# targets to build MAIN_TARGET = @MAIN_TARGET@OBJS = \	type1afm.lo SRCS = \	type1afm.c T1LIB =  ../lib/libt1.la all: type1afmtype1afm: $(OBJS) ../lib/t1lib.h	$(LIBTOOL) --mode=link \		$(CC) -o type1afm $(LDFLAGS) $(OBJS) $(T1LIB) $(LDLIBS).SUFFIXES: .lo.c.lo:	$(LIBTOOL) --mode=compile \		$(CC) -c $(CPPFLAGS) $(CFLAGS) $<.PHONY: cleandependencies: dummy 	gcc -MM *.c | sed 's/\.o:/.lo:/g' > .dependencies clean: dummy	$(RM) type1afm *.o *.lo .libs/* *~ \#*\# *.log *.bak	-rmdir .libsinstall: dummy	$(MKINSTALLDIRS) $(bindir)	$(LIBTOOL) --mode=install \		$(INSTALL_PROGRAM) type1afm $(bindir)/type1afmuninstall: dummy	$(LIBTOOL) --mode=uninstall \		$(RM) $(bindir)/type1afm	dummy:# Dependencies of object files include .dependencies

⌨️ 快捷键说明

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