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

📄 makefile.in

📁 android-w.song.android.widget
💻 IN
📖 第 1 页 / 共 2 页
字号:
## Makefile for the Bash library### Copyright (C) 1998-2010 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.PACKAGE = @PACKAGE_NAME@VERSION = @PACKAGE_VERSION@PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@PACKAGE_NAME = @PACKAGE_NAME@PACKAGE_STRING = @PACKAGE_STRING@PACKAGE_VERSION = @PACKAGE_VERSION@srcdir = @srcdir@VPATH = .:@srcdir@topdir = @top_srcdir@BUILD_DIR = @BUILD_DIR@LIBBUILD = ${BUILD_DIR}/libBASHINCDIR = ${topdir}/includeINTL_LIBSRC = ${topdir}/lib/intlINTL_BUILDDIR = ${LIBBUILD}/intlINTL_INC = @INTL_INC@LIBINTL_H = @LIBINTL_H@datarootdir = @datarootdir@INSTALL = @INSTALL@INSTALL_PROGRAM = @INSTALL_PROGRAM@INSTALL_DATA = @INSTALL_DATA@CC = @CC@RANLIB = @RANLIB@AR = @AR@ARFLAGS = @ARFLAGS@RM = rm -fCP = cpMV = mvSHELL = @MAKE_SHELL@CFLAGS = @CFLAGS@LOCAL_CFLAGS = @LOCAL_CFLAGS@ ${DEBUG}CPPFLAGS = @CPPFLAGS@LDFLAGS = @LDFLAGS@ @LOCAL_LDFLAGS@PROFILE_FLAGS = @PROFILE_FLAGS@DEFS = @DEFS@LOCAL_DEFS = @LOCAL_DEFS@INCLUDES = -I. -I../.. -I$(topdir) -I$(topdir)/lib -I$(BASHINCDIR) -I$(srcdir) $(INTL_INC)CCFLAGS = ${PROFILE_FLAGS} ${INCLUDES} $(DEFS) $(LOCAL_DEFS) $(LOCAL_CFLAGS) \	  $(CFLAGS) $(CPPFLAGS) GCC_LINT_FLAGS = -Wall -Wshadow -Wpointer-arith -Wcast-qual \		 -Wcast-align -Wstrict-prototypes -Wconversion \		 -Wmissing-prototypes -Wtraditional -Wredundant-decls -pedantic.c.o:	$(CC) -c $(CCFLAGS) $<# The name of the library target.LIBRARY_NAME = libsh.a# The C code source files for this library.CSOURCES = clktck.c clock.c getcwd.c getenv.c oslib.c setlinebuf.c \	   strcasecmp.c strerror.c strtod.c strtol.c strtoul.c \	   vprint.c itos.c rename.c zread.c zwrite.c shtty.c \	   inet_aton.c netconn.c netopen.c strpbrk.c timeval.c makepath.c \	   pathcanon.c pathphys.c tmpfile.c stringlist.c stringvec.c spell.c \	   shquote.c strtrans.c strcasestr.c snprintf.c mailstat.c \	   fmtulong.c fmtullong.c fmtumax.c shmatch.c strnlen.c \	   strtoll.c strtoull.c strtoimax.c strtoumax.c memset.c strstr.c \	   mktime.c strftime.c mbschr.c zcatfd.c zmapfd.c winsize.c eaccess.c \	   wcsdup.c fpurge.c zgetline.c mbscmp.c uconvert.c ufuncs.c \	   casemod.c dprintf.c input_avail.c mbscasecmp.c fnxform.c \	   strchrnul.c unicode.c wcswidth.c shmbchar.c# The header files for this library.HSOURCES = # The object files contained in $(LIBRARY_NAME)LIBOBJS = @LIBOBJS@OBJECTS = clktck.o clock.o getenv.o oslib.o setlinebuf.o strnlen.o \	  itos.o zread.o zwrite.o shtty.o shmatch.o eaccess.o \	  netconn.o netopen.o timeval.o makepath.o pathcanon.o \	  pathphys.o tmpfile.o stringlist.o stringvec.o spell.o shquote.o \	  strtrans.o snprintf.o mailstat.o fmtulong.o \	  fmtullong.o fmtumax.o zcatfd.o zmapfd.o winsize.o wcsdup.o \	  fpurge.o zgetline.o mbscmp.o uconvert.o ufuncs.o casemod.o \	  input_avail.o mbscasecmp.o fnxform.o unicode.o shmbchar.o ${LIBOBJS}SUPPORT = Makefileall: $(LIBRARY_NAME)$(LIBRARY_NAME): $(OBJECTS)	$(RM) $@	$(AR) $(ARFLAGS) $@ $(OBJECTS)	-test -n "$(RANLIB)" && $(RANLIB) $@force:# The rule for 'includes' is written funny so that the if statement# always returns TRUE unless there really was an error installing the# include files.install:clean:	$(RM) $(OBJECTS) $(LIBRARY_NAME)realclean distclean maintainer-clean: clean	$(RM) Makefilemostlyclean: clean# Dependencies${BUILD_DIR}/version.h: ${BUILD_DIR}/config.h ${BUILD_DIR}/Makefile Makefile	-( cd ${BUILD_DIR} && ${MAKE} ${MFLAGS} version.h )${BUILD_DIR}/pathnames.h: ${BUILD_DIR}/config.h ${BUILD_DIR}/Makefile Makefile	-( cd ${BUILD_DIR} && ${MAKE} ${MFLAGS} pathnames.h )# rules for losing makes, like SunOScasemod.o: casemod.cclktck.o: clktck.cclock.o: clock.ceaccess.o: eaccess.cdprintf.o: dprintf.cfmtullong.o: fmtullong.cfmtulong.o: fmtulong.cfmtumax.o: fmtumax.cfnxform.o: fnxform.cfpurge.o: fpurge.cgetcwd.o: getcwd.cgetenv.o: getenv.cinet_aton.o: inet_aton.cinput_avail.o: input_avail.citos.o: itos.cmailstat.o: mailstat.cmakepath.o: makepath.cmbscasecmp.o: mbscasecmp.cmbscmp.o: mbscmp.cmemset.o: memset.cmktime.o: mktime.cnetconn.o: netconn.cnetopen.o: netopen.coslib.o: oslib.cpathcanon.o: pathcanon.cpathphys.o: pathphys.crename.o: rename.csetlinebuf.o: setlinebuf.cshmbchar.o: shmbchar.cshquote.o: shquote.cshtty.o: shtty.csnprintf.o: snprintf.cspell.o: spell.cstrcasecmp.o: strcasecmp.cstrerror.o: strerror.cstrftime.o: strftime.cstrcasestr.o: strcasestr.cstringlist.o: stringlist.cstringvec.o: stringvec.cstrnlen.o: strnlen.cstrpbrk.o: strpbrk.cstrtod.o: strtod.cstrtoimax.o: strtoimax.cstrtol.o: strtol.cstrtoll.o: strtoll.cstrtoul.o: strtoul.cstrtoull.o: strtoull.cstrtoumax.o: strtoumax.cstrtrans.o: strtrans.ctimes.o: times.ctimeval.o: timeval.ctmpfile.o: tmpfile.cuconvert.o: uconvert.cufuncs.o: ufuncs.cvprint.o: vprint.cwcsdup.o: wcsdup.cwcswidth.o: wcswidth.cmbschr.o: mbschr.czcatfd.o: zcatfd.czmapfd.o: zmapfd.czgetline.o: zgetline.czread.o: zread.czwrite.o: zwrite.c# dependencies for c files that include other c filesfmtullong.o: fmtulong.cfmtumax.o: fmtulong.cstrtoll.o: strtol.cstrtoul.o: strtol.cstrtoull.o: strtol.c# all files in the library depend on config.hcasemod.o: ${BUILD_DIR}/config.hclktck.o: ${BUILD_DIR}/config.hclock.o: ${BUILD_DIR}/config.heaccess.o: ${BUILD_DIR}/config.hdprintf.o: ${BUILD_DIR}/config.hfmtullong.o: ${BUILD_DIR}/config.hfmtulong.o: ${BUILD_DIR}/config.hfmtumax.o: ${BUILD_DIR}/config.hfnxform.o: ${BUILD_DIR}/config.hfpurge.o: ${BUILD_DIR}/config.hgetcwd.o: ${BUILD_DIR}/config.hgetenv.o: ${BUILD_DIR}/config.hinet_aton.o: ${BUILD_DIR}/config.hinput_avail.o: ${BUILD_DIR}/config.hitos.o: ${BUILD_DIR}/config.hmailstat.o: ${BUILD_DIR}/config.hmakepath.o: ${BUILD_DIR}/config.hmbscasecmp.o: ${BUILD_DIR}/config.hmbscmp.o: ${BUILD_DIR}/config.hmemset.o: ${BUILD_DIR}/config.hmktime.o: ${BUILD_DIR}/config.hnetconn.o: ${BUILD_DIR}/config.hnetopen.o: ${BUILD_DIR}/config.hoslib.o: ${BUILD_DIR}/config.hpathcanon.o: ${BUILD_DIR}/config.hpathphys.o: ${BUILD_DIR}/config.hrename.o: ${BUILD_DIR}/config.hsetlinebuf.o: ${BUILD_DIR}/config.hshmbchare.o: ${BUILD_DIR}/config.hshquote.o: ${BUILD_DIR}/config.hshtty.o: ${BUILD_DIR}/config.hsnprintf.o: ${BUILD_DIR}/config.hspell.o: ${BUILD_DIR}/config.hstrcasecmp.o: ${BUILD_DIR}/config.hstrerror.o: ${BUILD_DIR}/config.hstrftime.o: ${BUILD_DIR}/config.hstrcasestr.o: ${BUILD_DIR}/config.hstringlist.o: ${BUILD_DIR}/config.hstringvec.o: ${BUILD_DIR}/config.hstrnlen.o: ${BUILD_DIR}/config.hstrpbrk.o: ${BUILD_DIR}/config.hstrtod.o: ${BUILD_DIR}/config.hstrtoimax.o: ${BUILD_DIR}/config.hstrtol.o: ${BUILD_DIR}/config.hstrtoll.o: ${BUILD_DIR}/config.hstrtoul.o: ${BUILD_DIR}/config.hstrtoull.o: ${BUILD_DIR}/config.hstrtoumax.o: ${BUILD_DIR}/config.hstrtrans.o: ${BUILD_DIR}/config.htimes.o: ${BUILD_DIR}/config.htimeval.o: ${BUILD_DIR}/config.htmpfile.o: ${BUILD_DIR}/config.huconvert.o: ${BUILD_DIR}/config.hufuncs.o: ${BUILD_DIR}/config.hvprint.o: ${BUILD_DIR}/config.hwcsdup.o: ${BUILD_DIR}/config.hwcswidth.o: ${BUILD_DIR}/config.hmbschr.o: ${BUILD_DIR}/config.hzcatfd.o: ${BUILD_DIR}/config.hzgetline.o: ${BUILD_DIR}/config.hzmapfd.o: ${BUILD_DIR}/config.hzread.o: ${BUILD_DIR}/config.hzwrite.o: ${BUILD_DIR}/config.h

⌨️ 快捷键说明

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