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

📄 makefile.in

📁 UNIX下SH的实现源码
💻 IN
字号:
## Makefile for the Bash library### Copyright (C) 1998 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.srcdir = @srcdir@VPATH = .:@srcdir@topdir = @top_srcdir@BUILD_DIR = @BUILD_DIR@BASHINCDIR = ${topdir}/includeINSTALL = @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@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)CCFLAGS = ${PROFILE_FLAGS} ${INCLUDES} $(DEFS) $(LOCAL_DEFS) $(LOCAL_CFLAGS) \	  $(CFLAGS) $(CPPFLAGS) .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 netopen.c strpbrk.c timeval.c makepath.c# The header files for this library.HSOURCES = # The object files contained in $(LIBRARY_NAME)OBJECTS = clktck.o clock.o getcwd.o getenv.o oslib.o setlinebuf.o \	  strcasecmp.o strerror.o strtod.o strtol.o strtoul.o \	  vprint.o itos.o rename.o zread.o zwrite.o shtty.o \	  inet_aton.o netopen.o strpbrk.o timeval.o makepath.oSUPPORT = 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# rules for losing makes, like SunOSclktck.o: clktck.cclock.o: clock.cgetcwd.o: getcwd.cgetenv.o: getenv.cinet_aton.o: inet_aton.citos.o: itos.cnetopen.o: netopen.coslib.o: oslib.crename.o: rename.csetlinebuf.o: setlinebuf.cshquote.o: shquote.cshtty.o: shtty.cstrcasecmp.o: strcasecmp.cstrerror.o: strerror.cstrpbrk.o: strpbrk.cstrtod.o: strtod.cstrtol.o: strtol.cstrtoul.o: strtoul.ctimes.o: times.ctimeval.o: timeval.cvprint.o: vprint.czread.o: zread.czwrite.o: zwrite.c# all files in the library depend on config.hclktck.o: ${BUILD_DIR}/config.hclock.o: ${BUILD_DIR}/config.hgetcwd.o: ${BUILD_DIR}/config.hgetenv.o: ${BUILD_DIR}/config.hinet_aton.o: ${BUILD_DIR}/config.hitos.o: ${BUILD_DIR}/config.hnetopen.o: ${BUILD_DIR}/config.hoslib.o: ${BUILD_DIR}/config.hrename.o: ${BUILD_DIR}/config.hsetlinebuf.o: ${BUILD_DIR}/config.hshquote.o: ${BUILD_DIR}/config.hshtty.o: ${BUILD_DIR}/config.hstrcasecmp.o: ${BUILD_DIR}/config.hstrerror.o: ${BUILD_DIR}/config.hstrpbrk.o: ${BUILD_DIR}/config.hstrtod.o: ${BUILD_DIR}/config.hstrtol.o: ${BUILD_DIR}/config.hstrtoul.o: ${BUILD_DIR}/config.htimes.o: ${BUILD_DIR}/config.htimeval.o: ${BUILD_DIR}/config.hvprint.o: ${BUILD_DIR}/config.hzread.o: ${BUILD_DIR}/config.hzwrite.o: ${BUILD_DIR}/config.hclktck.o: ${topdir}/bashtypes.hgetcwd.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.hgetcwd.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/posixdir.hgetcwd.o: ${BASHINCDIR}/memalloc.h ${BASHINCDIR}/ansi_stdlib.hgetenv.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.hgetenv.o: ${topdir}/shell.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.hgetenv.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.hgetenv.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.hgetenv.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.hgetenv.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.hgetenv.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.hgetenv.o: ${topdir}/pathnames.h ${topdir}/externs.hinet_aton.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.hinet_aton.o: ${BASHINCDIR}/stdc.hitos.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.hitos.o: ${topdir}/shell.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.hitos.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.hitos.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.hitos.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.hitos.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.hitos.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.hitos.o: ${topdir}/pathnames.h ${topdir}/externs.hnetopen.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.hoslib.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.hoslib.o: ${topdir}/shell.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.hoslib.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.hoslib.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.hoslib.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.hoslib.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.hoslib.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.hoslib.o: ${topdir}/pathnames.h ${topdir}/externs.hoslib.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.hoslib.o: ${BASHINCDIR}/ansi_stdlib.hrename.o: ${topdir}/bashtypes.h ${BASHINCDIR}/stdc.hshtty.o: ${BASHINCDIR}/shtty.hshtty.o: ${BASHINCDIR}/stdc.hstrcasecmp.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.hstrerror.o: ${topdir}/bashtypes.hstrerror.o: ${topdir}/shell.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.hstrerror.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.hstrerror.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.hstrerror.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.hstrerror.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.hstrerror.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.hstrerror.o: ${topdir}/pathnames.h ${topdir}/externs.hstrpbrk.o: ${BASHINCDIR}/stdc.hstrtod.o: ${topdir}/bashansi.hstrtod.o: ${BASHINCDIR}/ansi_stdlib.hstrtol.o: ${topdir}/bashansi.hstrtol.o: ${BASHINCDIR}/ansi_stdlib.hstrtoul.o: ${topdir}/bashansi.hstrtoul.o: ${BASHINCDIR}/ansi_stdlib.htimes.o: ${BASHINCDIR}/systimes.htimes.o: ${BASHINCDIR}/posixtime.htimeval.o: ${BASHINCDIR}/posixtime.hclock.o: ${BASHINCDIR}/posixtime.h

⌨️ 快捷键说明

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