📄 makefile.in
字号:
# Makefile for GNU patch.# Copyright (C) 1993, 1997, 1998, 1999, 2001, 2002, 2003 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; see the file COPYING.# If not, write to the Free Software Foundation,# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.#### Start of system configuration section. ####srcdir = @srcdir@VPATH = @srcdir@@SET_MAKE@CC = @CC@ed_PROGRAM = @ed_PROGRAM@INSTALL = @INSTALL@INSTALL_PROGRAM = @INSTALL_PROGRAM@INSTALL_DATA = @INSTALL_DATA@transform = @program_transform_name@CFLAGS = @CFLAGS@CPPFLAGS = @CPPFLAGS@DEFS = @DEFS@EXEEXT = @EXEEXT@LDFLAGS = @LDFLAGS@LIBOBJS = @LIBOBJS@LIBS = @LIBS@OBJEXT = @OBJEXT@PACKAGE_NAME = @PACKAGE_NAME@PACKAGE_VERSION = @PACKAGE_VERSION@prefix = @prefix@exec_prefix = @exec_prefix@bindir = $(exec_prefix)/bin# Where to put the manual pages.mandir = @mandir@man1dir = $(mandir)/man1# Extension (including `.') for the manual page filenames.man1ext = .1# Hook for nonstandard builds.CONFIG_STATUS = config.status#### End of system configuration section. ####SHELL = /bin/shLIBSRCS = error.c malloc.c memchr.c mkdir.c \ realloc.c rmdir.c strcasecmp.c strncasecmp.cSRCS = $(LIBSRCS) \ addext.c argmatch.c backupfile.c \ basename.c dirname.c \ getopt.c getopt1.c inp.c \ maketime.c partime.c \ patch.c pch.c \ quote.c quotearg.c quotesys.c \ util.c version.c xmalloc.cOBJS = $(LIBOBJS) \ addext.$(OBJEXT) argmatch.$(OBJEXT) backupfile.$(OBJEXT) \ basename.$(OBJEXT) dirname.$(OBJEXT) \ getopt.$(OBJEXT) getopt1.$(OBJEXT) inp.$(OBJEXT) \ maketime.$(OBJEXT) partime.$(OBJEXT) \ patch.$(OBJEXT) pch.$(OBJEXT) \ quote.$(OBJEXT) quotearg.$(OBJEXT) quotesys.$(OBJEXT) \ util.$(OBJEXT) version.$(OBJEXT) xmalloc.$(OBJEXT)HDRS = argmatch.h backupfile.h common.h dirname.h \ error.h getopt.h gettext.h \ inp.h maketime.h partime.h pch.h \ quote.h quotearg.h quotesys.h \ unlocked-io.h util.h version.h xalloc.hMISC = AUTHORS COPYING ChangeLog INSTALL Makefile.in NEWS README \ aclocal.m4 \ config.hin configure configure.ac \ install-sh mkinstalldirs patch.man stdbool.h.inDISTFILES = $(MISC) $(SRCS) $(HDRS)DISTFILES_M4 = $(ACINCLUDE_INPUTS)DISTFILES_PC = pc/chdirsaf.cDISTFILES_PC_DJGPP = pc/djgpp/README pc/djgpp/config.sed \ pc/djgpp/configure.bat pc/djgpp/configure.sedpatch_name = `echo patch | sed '$(transform)'`all:: patch$(EXEEXT)info::check::installcheck::COMPILE = $(CC) -c $(CPPFLAGS) $(DEFS) -Ded_PROGRAM=\"$(ed_PROGRAM)\" \ -I. -I$(srcdir) $(CFLAGS).c.$(OBJEXT): $(COMPILE) $<patch$(EXEEXT): $(OBJS) $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(OBJS) $(LIBS)install:: all installdirs $(INSTALL_PROGRAM) patch$(EXEEXT) $(bindir)/$(patch_name)$(EXEEXT) -$(INSTALL_DATA) $(srcdir)/patch.man $(man1dir)/$(patch_name)$(man1ext)installdirs:: $(SHELL) $(srcdir)/mkinstalldirs $(bindir) $(man1dir)install-strip:: $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' installuninstall:: rm -f $(bindir)/$(patch_name)$(EXEEXT) rm -f $(man1dir)/$(patch_name)$(man1ext)Makefile: Makefile.in $(CONFIG_STATUS) $(SHELL) $(CONFIG_STATUS)config.status: configure $(SHELL) $(CONFIG_STATUS) --recheckconfigure: configure.ac $(srcdir)/aclocal.m4 cd $(srcdir) && autoconfconfig.hin: configure.ac $(srcdir)/aclocal.m4 cd $(srcdir) && rm -f config.hin && autoheaderstdbool.h: stdbool.h.in sed -e 's/@''HAVE__BOOL''@/@HAVE__BOOL@/g' \ <$(srcdir)/stdbool.h.in >stdbool.hM4DIR = $(srcdir)/m4ACINCLUDE_INPUTS = \ $(M4DIR)/backupfile.m4 \ $(M4DIR)/d-ino.m4 \ $(M4DIR)/dirname.m4 \ $(M4DIR)/dos.m4 \ $(M4DIR)/error.m4 \ $(M4DIR)/getopt.m4 \ $(M4DIR)/malloc.m4 \ $(M4DIR)/mbrtowc.m4 \ $(M4DIR)/mbstate_t.m4 \ $(M4DIR)/memchr.m4 \ $(M4DIR)/mkdir.m4 \ $(M4DIR)/onceonly.m4 \ $(M4DIR)/quote.m4 \ $(M4DIR)/quotearg.m4 \ $(M4DIR)/realloc.m4 \ $(M4DIR)/rmdir.m4 \ $(M4DIR)/setmode.m4 \ $(M4DIR)/stdbool.m4 \ $(M4DIR)/unlocked-io.m4 \ $(M4DIR)/utimbuf.m4 \ $(M4DIR)/xalloc.m4$(srcdir)/aclocal.m4: $(ACINCLUDE_INPUTS) cat $(ACINCLUDE_INPUTS) >$(srcdir)/aclocal.m4TAGS: $(HDRS) $(SRCS) etags $(HDRS) $(SRCS)mostlyclean:: rm -f core* *core *.$(OBJEXT) *_.c stdbool.hclean:: mostlyclean rm -f patch$(EXEEXT)distclean:: clean rm -f Makefile config.cache config.log config.status config.hmaintainer-clean:: @echo "This command is intended for maintainers to use;" @echo "rebuilding the deleted files requires special tools." $(MAKE) distclean rm -f TAGSPV = $(PACKAGE_NAME)-$(PACKAGE_VERSION)dist:: $(DISTFILES) $(DISTFILES_M4) $(DISTFILES_PC) $(DISTFILES_PC_DJGPP) rm -rf $(PV) mkdir $(PV) $(PV)/m4 $(PV)/pc $(PV)/pc/djgpp cp -p $(DISTFILES) $(PV) cp -p $(DISTFILES_M4) $(PV)/m4 cp -p $(DISTFILES_PC) $(PV)/pc cp -p $(DISTFILES_PC_DJGPP) $(PV)/pc/djgpp tar -chf - $(PV) | gzip -9 >$(PV).tar.gz rm -rf $(PV)$(OBJS): config.hCOMMON = common.h @STDBOOL_H@addext.$(OBJEXT): backupfile.h dirname.hargmatch.$(OBJEXT): argmatch.h gettext.h error.h \ quote.h quotearg.h unlocked-io.hbackupfile.$(OBJEXT): argmatch.h backupfile.h dirname.hbasename.$(OBJEXT): dirname.hdirname.$(OBJEXT): dirname.h xalloc.herror.$(OBJEXT): error.h gettext.h unlocked-io.hgetopt.$(OBJEXT) getopt1.$(OBJEXT): getopt.hinp.$(OBJEXT): backupfile.h $(COMMON) inp.h pch.h quotearg.h util.h xalloc.hmaketime.$(OBJEXT): maketime.h partime.hmkdir.$(OBJEXT): dirname.h xalloc.hpartime.$(OBJEXT): partime.hpatch.$(OBJEXT): argmatch.h backupfile.h $(COMMON) getopt.h inp.h \ pch.h quotearg.h util.h version.h xalloc.hpch.$(OBJEXT): backupfile.h $(COMMON) dirname.h inp.h pch.h quotearg.h util.hquote.$(OBJECT): quote.h quotearg.hquotearg.$(OBJEXT): gettext.h quotearg.h xalloc.hquotesys.$(OBJEXT): quotesys.hstrncasecmp.$(OBJEXT): strcasecmp.cutil.$(OBJEXT): backupfile.h $(COMMON) dirname.h maketime.h \ partime.h quotearg.h quotesys.h util.h version.h xalloc.hversion.$(OBJEXT): $(COMMON) version.hxmalloc.$(OBJEXT): error.h gettext.h xalloc.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -