📄 makefile.in
字号:
## The contents of this file are subject to the Mozilla Public# License Version 1.1 (the "License"); you may not use this file# except in compliance with the License. You may obtain a copy of# the License at http://www.mozilla.org/MPL/# # Software distributed under the License is distributed on an "AS# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or# implied. See the License for the specific language governing# rights and limitations under the License.# # The Original Code is a trivial PKCS#11 test program.# # The Initial Developer of the Original Code is Netscape# Communications Corp. Portions created by Netscape are # Copyright (C) 2000. All Rights Reserved.# # Contributor(s): ## Alternatively, the contents of this file may be used under the# terms of the GNU General Public License Version 2 or later (the# "GPL"), in which case the provisions of the GPL are applicable # instead of those above. If you wish to allow use of your # version of this file only under the terms of the GPL and not to# allow others to use your version of this file under the MPL,# indicate your decision by deleting the provisions above and# replace them with the notice and other provisions required by# the GPL. If you do not delete the provisions above, a recipient# may use your version of this file under either the MPL or the# GPL.#MAKEFILE_IN_CVS_ID = "@(#) $RCSfile: Makefile.in,v $ $Revision: 1.1 $ $Date: 2000/05/08 23:19:43 $ $Name: NSS_3_1_1_RTM $"SHELL = /bin/sh.SUFFIXES:.SUFFIXES: .c .o .h .in .a .sosrcdir = @srcdir@VPATH = @srcdir@prefix = @prefix@exec_prefix = @exec_prefix@includedir = @includedir@bindir = @bindir@@SET_MAKE@INSTALL = @INSTALL@RANLIB = @RANLIB@AR = @AR@CC = @CC@LD = @LD@RM = @RM@TAR = @TAR@CPPFLAGS = @CPPFLAGS@CFLAGS = @CFLAGS@LDFLAGS = @LDFLAGS@LIBS = @LIBS@INSTALL_PROGRAM = $(INSTALL) -m 0500all:: program# Standard Netscape/Mozilla targets:# import import_xp export private_export libs program install all clobber # clobber_all release release_xp alltags# Standard GNU targets:# all install uninstall install-strip clean distclean mostlyclean # maintainer-clean TAGS info dvi dist check installcheck installdirs# === The actual targets and the real commands that make them ===program:: trivialtrivial: trivial.c config.h Makefile $(CC) -I. -I${srcdir} $(CFLAGS) $(CPPFLAGS) $< -o $@ $(LDFLAGS) $(LIBS)# Now, various standard targets, some that do stuff, some that are no-opsimport::export:: installprivate_export::program::clobber:: cleanclobber_all:: maintainer-cleanalltags:: TAGSRESULTS = \ $(DESTDIR)$(bindir)/trivial \ $(NULL)install:: $(RESULTS)$(DESTDIR)$(bindir)/trivial: trivial $(INSTALL_PROGRAM) trivial $(DESTDIR)$(bindir)/trivial# "rm -f" with no arguments bites on some platforms.# There should be an autoconf check and maybe a more # general $(FORCEDREMOVE) commanduninstall:: $(RM) -f $(RESULTS)install-strip:: $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s ' installclean:: $(RM) -f *~ core trivial.o trivialdistclean:: clean $(RM) -f Makefile config.cache config.h config.log config.status stamp-h stamp-h.inmostlyclean:: cleanmaintainer-clean:: distclean $(RM) -f TAGS trivial*.tar.gzTAGS::DISTFILES = \ .cvsignore \ README.txt \ Makefile.in \ acconfig.h \ config.h.in \ configure \ configure.in \ install-sh \ trivial.c \ $(NULL)dist:: trivial.tar.gz# There must be an easier and more portable way of doing this..trivial.tar.gz: $(DISTFILES) echo $(DISTFILES) | tr ' ' '\n' | sed "s^.*^`( cd ${srcdir}; pwd ) | xargs basename`/&^" | xargs tar czf $@ -C ${srcdir}/..# other "standard" but irrelevant targetsinfo::dvi::check::installcheck::installdirs::# Include dependancies# autoheader might not change config.h.in, so touch a stamp file${srcdir}/config.h.in: stamp-h.in${srcdir}/stamp-h.in: configure.in acconfig.h cd ${srcdir} && autoheader echo timestamp > ${srcdir}/stamp-h.in# Remake the configuration${srcdir}/configure: configure.in cd ${srcdir} && autoconfconfig.h: stamp-hstamp-h: config.h.in config.status ./config.statusMakefile: Makefile.in config.status ./config.statusconfig.status: configure ./config.status --recheck
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -