📄 makefile.in
字号:
# Makefile for GNU termcap library.# Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.# This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.# This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details.# You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.#### Start of system configuration section. ####srcdir = @srcdir@VPATH = @srcdir@CC = @CC@AR = arRANLIB = @RANLIB@INSTALL = @INSTALL@INSTALL_DATA = @INSTALL_DATA@MAKEINFO = makeinfoDEFS = @DEFS@ -DTERMCAP_FILE=\"$(termcapfile)\"CFLAGS = -gprefix = @prefix@exec_prefix = @exec_prefix@# Directory in which to install libtermcap.a.libdir = $(exec_prefix)/lib# Directory in which to install termcap.h.includedir = $(prefix)/include# Directory in which to optionally also install termcap.h,# so compilers besides gcc can find it by default.# If it is empty or not defined, termcap.h will only be installed in# includedir. oldincludedir = /usr/include# Directory in which to install the documentation info files.infodir = $(prefix)/info# File to which `install-data' should install the data file# if --enable-install-termcap was given.termcapfile = @termcapfile@#### End of system configuration section. ####SHELL = /bin/shSRCS = termcap.c tparam.c version.cOBJS = termcap.o tparam.o version.oHDRS = termcap.hDISTFILES = $(SRCS) $(HDRS) ChangeLog COPYING README INSTALL NEWS \termcap.src termcap.texi termcap.info* \texinfo.tex Makefile.in configure configure.in mkinstalldirs install-shall: libtermcap.a info.c.o: $(CC) -c $(CPPFLAGS) $(DEFS) -I. -I$(srcdir) $(CFLAGS) $<install: all installdirs @installdata@ $(INSTALL_DATA) libtermcap.a $(libdir)/libtermcap.a -$(RANLIB) $(libdir)/libtermcap.a cd $(srcdir); $(INSTALL_DATA) termcap.h $(includedir)/termcap.h -cd $(srcdir); test -z "$(oldincludedir)" || \ $(INSTALL_DATA) termcap.h $(oldincludedir)/termcap.h cd $(srcdir); for f in termcap.info*; \ do $(INSTALL_DATA) $$f $(infodir)/$$f; doneuninstall: @uninstalldata@ rm -f $(libdir)/libtermcap.a $(includedir)/termcap.h test -z "$(oldincludedir)" || rm -f $(oldincludedir)/termcap.h rm -f $(infodir)/termcap.info*# These are separate targets to avoid trashing the user's existing# termcap file unexpectedly.install-data: $(INSTALL_DATA) ${srcdir}/termcap.src ${termcapfile}uninstall-data: rm -f ${termcapfile}installdirs: $(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(libdir) \ $(includedir) $(infodir)Makefile: Makefile.in config.status $(SHELL) config.statusconfig.status: configure $(SHELL) config.status --recheckconfigure: configure.in cd $(srcdir) && autoconflibtermcap.a: $(OBJS) $(AR) rc $@ $(OBJS) -$(RANLIB) $@info: termcap.infotermcap.info: termcap.texi $(MAKEINFO) $(srcdir)/termcap.texi --output=$@TAGS: $(SRCS) etags $(SRCS)clean: rm -f *.a *.o coremostlyclean: cleandistclean: clean rm -f Makefile config.status config.cache config.logmaintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "rebuilding the deleted files requires makeinfo." rm -f TAGS *.info*dist: $(DISTFILES) echo termcap-`sed -e '/version_string/!d' -e 's/[^0-9]*\([0-9a-z.]*\).*/\1/' -e q version.c` > .fname rm -rf `cat .fname` mkdir `cat .fname` ln $(DISTFILES) `cat .fname` tar chzf `cat .fname`.tar.gz `cat .fname` rm -rf `cat .fname` .fname
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -