📄 makefile.in
字号:
################################################################# Process this file with top-level configure script to produce Makefile## Copyright 2000 Clark Cooper## This file is part of EXPAT.## EXPAT is free software; you can redistribute it and/or modify it# under the terms of the License (based on the MIT/X license) contained# in the file COPYING that comes with this distribution.## EXPAT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE# SOFTWARE OR THE USE OR OTHER DEALINGS IN EXPAT.#SHELL = @SHELL@srcdir = @srcdir@top_srcdir = @top_srcdir@VPATH = @srcdir@prefix = @prefix@exec_prefix = @exec_prefix@blddir = @blddir@/libbindir = @bindir@sbindir = @sbindir@libexecdir = @libexecdir@datadir = @datadir@sysconfdir = @sysconfdir@sharedstatedir = @sharedstatedir@localstatedir = @localstatedir@libdir = @libdir@infodir = @infodir@mandir = @mandir@includedir = @includedir@oldincludedir = /usr/includesubdir = libtop_builddir = ..INSTALL = @INSTALL@INSTALL_PROGRAM = @INSTALL_PROGRAM@INSTALL_SCRIPT = @INSTALL_SCRIPT@INSTALL_DATA = @INSTALL_DATA@host_alias = @host_alias@host_triplet = @host@AS = @AS@CC = @CC@DLLTOOL = @DLLTOOL@LIBTOOL = @LIBTOOL@LN_S = @LN_S@OBJDUMP = @OBJDUMP@PACKAGE = @PACKAGE@RANLIB = @RANLIB@VERSION = @VERSION@LIBRARY = libexpat.laSOURCES = xmlparse.c xmltok.c xmlrole.cOBJECTS = $(SOURCES:.c=.o)LTOBJECTS = $(SOURCES:.c=.lo)TEMPLATES = xmltok_impl.c xmltok_ns.cAPIHEADER = expat.hHEADERS = ascii.h iasciitab.h utf8tab.h xmltok.h asciitab.h latin1tab.h \ nametab.h xmldef.h xmlrole.h xmltok_impl.hmkinstalldirs = $(SHELL) $(top_srcdir)/conftools/mkinstalldirsCONFIG_HEADER = ../config.hCONFIG_CLEAN_FILES = INCLUDES = -I$(srcdir) -I.. -I$(blddir)DEFS = @DEFS@ -DPACKAGE='"$(PACKAGE)"' -DVERSION='"$(PACKAGE)_$(VERSION)"'CPPFLAGS = @CPPFLAGS@LDFLAGS = @LDFLAGS@LIBS = @LIBS@CFLAGS = @CFLAGS@LIBREVISION = @LIBREVISION@LIBCURRENT = @LIBCURRENT@LIBAGE = @LIBAGE@COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)CCLD = $(CC)LINK = $(LIBTOOL) --mode=link $(CCLD) -version-info $(LIBCURRENT):$(LIBREVISION):$(LIBAGE) $(CFLAGS) $(LDFLAGS) -o $@DIST_COMMON = Makefile.inDISTFILES = $(DIST_COMMON) $(SOURCES) $(TEMPLATES) $(APIHEADER) $(HEADERS) TAR = gtarGZIP_ENV = --bestall: $(LIBRARY).SUFFIXES: .c .lo .o.PHONY: all clean distclean maintainer-clean.c.o: $(COMPILE) -c $<.c.lo: $(LTCOMPILE) -c $<Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status cd $(top_builddir) \ && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status$(top_builddir)/config.status: $(top_builddir)/configure cd $(top_builddir) && $(MAKE) config.status$(top_builddir)/config.h: $(top_builddir)/config.h.in cd $(top_builddir) && $(MAKE) config.hclean: rm -f $(LIBRARY) *.o *.lo *~ rm -rf .libs _libsdistclean: clean rm -f Makefile expat.hmaintainer-clean: distcleaninstall: $(LIBRARY) $(APIHEADER) $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir) $(LIBTOOL) --mode=install $(INSTALL) $(LIBRARY) $(DESTDIR)$(libdir)/$(LIBRARY) $(INSTALL_DATA) $(APIHEADER) $(DESTDIR)$(includedir)uninstall: $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(LIBRARY); rm -f $(DESTDIR)$(libdir)/$(APIHEADER)$(LIBRARY): $(LTOBJECTS) $(LINK) -rpath $(libdir) $(LDFLAGS) $(LTOBJECTS)xmlparse.o \xmlparse.lo: xmlparse.c expat.h xmlrole.h xmltok.h $(top_builddir)/config.hxmlrole.o \xmlrole.lo: xmlrole.c ascii.h xmlrole.h $(top_builddir)/config.hxmltok.o \xmltok.lo: xmltok.c xmltok_impl.c xmltok_ns.c \ ascii.h asciitab.h iasciitab.h latin1tab.h nametab.h utf8tab.h \ xmltok.h xmltok_impl.h $(top_builddir)/config.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -