makefile.am

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· AM 代码 · 共 74 行

AM
74
字号
## Process this file with automake to produce Makefile.in.AUTOMAKE_OPTIONS = foreign subdir-objects## The compiler with whatever flags we want for both -c and -C## compiles.GCJ_WITH_FLAGS = $(GCJ) --encoding=UTF-8 -Wno-deprecated -fclasspath= -fbootclasspath=$(BOOTCLASSPATH)BOOTCLASSPATH = $(here)'$(CLASSPATH_SEPARATOR)'$(srcdir)'$(CLASSPATH_SEPARATOR)'$(top_srcdir)'$(CLASSPATH_SEPARATOR)'$(top_builddir)AM_GCJFLAGS = \	-B$(top_builddir) \	@LIBGCJ_JAVAFLAGS@ \	-fclasspath= -fbootclasspath=$(BOOTCLASSPATH) \	--encoding=UTF-8 \	-Wno-deprecatedBUILT_SOURCES = classes.stampsax.jar: classes.stamp	find org -name '*.class' -print | $(ZIP) -cfME@ $@classes.stamp:	$(source_files)	here=`pwd`; cd $(srcdir); \	$(GCJ_WITH_FLAGS) -C -d $$here $(source_files)	echo > classes.stampmostlyclean-local:	-find . -name '*.class' | xargs rm	-rm classes.stamp sax.jarnoinst_LTLIBRARIES = libsax-gcj.lalibsax_gcj_la_SOURCES =	sax.jarlibsax_gcj_la_GCJFLAGS = -findirect-dispatch $(AM_GCJFLAGS)source_files = \org/xml/sax/SAXNotSupportedException.java \org/xml/sax/helpers/NamespaceSupport.java \org/xml/sax/helpers/AttributesImpl.java	\org/xml/sax/helpers/LocatorImpl.java \org/xml/sax/helpers/DefaultHandler.java	\org/xml/sax/helpers/AttributeListImpl.java \org/xml/sax/helpers/ParserFactory.java \org/xml/sax/helpers/NewInstance.java \org/xml/sax/helpers/XMLFilterImpl.java \org/xml/sax/helpers/ParserAdapter.java \org/xml/sax/helpers/XMLReaderAdapter.java \org/xml/sax/helpers/XMLReaderFactory.java \org/xml/sax/HandlerBase.java \org/xml/sax/SAXException.java \org/xml/sax/ContentHandler.java	\org/xml/sax/SAXNotRecognizedException.java \org/xml/sax/ErrorHandler.java \org/xml/sax/AttributeList.java \org/xml/sax/Locator.java \org/xml/sax/Attributes.java \org/xml/sax/SAXParseException.java \org/xml/sax/XMLFilter.java \org/xml/sax/EntityResolver.java	\org/xml/sax/XMLReader.java \org/xml/sax/ext/Locator2.java \org/xml/sax/ext/LexicalHandler.java \org/xml/sax/ext/Attributes2Impl.java \org/xml/sax/ext/DeclHandler.java \org/xml/sax/ext/Attributes2.java \org/xml/sax/ext/EntityResolver2.java \org/xml/sax/ext/Locator2Impl.java \org/xml/sax/ext/DefaultHandler2.java \org/xml/sax/InputSource.java \org/xml/sax/DocumentHandler.java \org/xml/sax/DTDHandler.java \org/xml/sax/Parser.java

⌨️ 快捷键说明

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