makefile.am

来自「cygwin, 著名的在win32下模拟unix操作系统的东东」· AM 代码 · 共 64 行

AM
64
字号
## Process this file with automake to generate Makefile.inAUTOMAKE_OPTIONS = cygnusif NEWLIB_HW_FPMATHDIR = mathfpelseMATHDIR = mathendifSUBDIRS = $(MATHDIR) common machinelibm_la_LDFLAGS = -Xcompiler -nostdlibif USE_LIBTOOLSUBLIBS = $(MATHDIR)/lib$(MATHDIR).$(aext) common/libcommon.$(aext) $(LIBM_MACHINE_LIB)noinst_LTLIBRARIES = libm.lalibm_la_SOURCES =libm_la_LIBADD = $(SUBLIBS)elseSUBLIBS = $(MATHDIR)/lib.$(aext) common/lib.$(aext) $(LIBM_MACHINE_LIB)noinst_LIBRARIES = libm.alibm.a: $(SUBLIBS)	rm -f $@	rm -rf tmp	mkdir tmp	cd tmp; \	  for i in $(SUBLIBS); do \	    $(AR) x ../$$i; \	done; \	$(AR) $(AR_FLAGS) ../$@ *.o	$(RANLIB) $@	rm -rf tmpendif$(SUBLIBS):info_TEXINFOS = libm.texinfolibm.info: targetdep.tex math/stmp-defstmp-targetdep: force	rm -f tmp.texi	targetdoc=`pwd`/tmp.texi; \	for d in $(SUBDIRS); do \	  if test "$$d" != "."; then \	    (cd $$d && $(MAKE) doc) || exit 1; \	  fi; \	done	$(SHELL) $(newlib_basedir)/../move-if-change tmp.texi targetdep.tex	touch $@targetdep.tex: stmp-targetdep ; @truemath/stmp-def: stmp-targetdep ; @true.PHONY: forceforce:CLEANFILES = tmp.texi targetdep.tex stmp-targetdepACLOCAL_AMFLAGS = -I ..CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host

⌨️ 快捷键说明

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