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

📄 makefile

📁 rxvt经典的linux下的终端.小巧实用
💻
字号:
# ./Makefile.in			-*- Makefile -*-# $Id: Makefile.in,v 1.16 2003/03/07 02:24:18 gcw Exp $# autoconf/Make.common.in	 -*- Makefile -*-# release date (man), LSM date, version number/name, current maintainerDATE=26 MARCH 2003LSMDATE=26MAR03VERSION=2.7.10VERNAME=rxvt-$(VERSION)#MAINT=Geoff Wing#MAINTEMAIL=<gcw@rxvt.org>#WEBMAINT=Oezguer Kesim#WEBMAINTEMAIL=<oec@rxvt.org>#WEBPAGE=<http://www.rxvt.org/>#FTPSITENAME=ftp.rxvt.org#FTPSITEDIR=/pub/rxvt##-------------------------------------------------------------------------RXVTNAME=rxvtSHELL = /bin/sh# This variable makes it possible to move the installation root to another# directory. This is useful when you're creating a binary distribution# If empty, normal root will be used.# You can run eg. 'make install DESTDIR=/packages/rxvt-xx' to accomplish# that.# DESTDIR = /usr/local/X11/$(VERNAME)# Installation target directories & other installation stuffprefix = /usr/localexec_prefix = ${prefix}bindir = ${exec_prefix}/binlibdir = ${exec_prefix}/libincludedir = ${prefix}/includemandir = ${prefix}/man/man1manext = 1# Tools & program stuffCC = gccCPP = gcc -EMV = /bin/mvRM = /bin/rmRMF = /bin/rm -fCP = /bin/cpLN = /bin/lnSED = /usr/bin/sedAWK = awkECHO = /bin/echoCMP = /usr/bin/cmpTBL = /usr/bin/tblINSTALL = /usr/bin/install -cINSTALL_PROGRAM = /usr/bin/install -c -m 755INSTALL_DATA = /usr/bin/install -c -m 644# Flags & libs# add -DBINDIR=\""$(bindir)/"\" to CPPFLAGS, if we need to spawn a programCFLAGS = -g -O2 CPPFLAGS =  LDFLAGS = DEFS = -DHAVE_CONFIG_HLIBS = DINCLUDE = DLIB = # X Include directoryXINC =  -I/usr/X11R6/include # extra libraries needed by X on some systems, X library locationXLIB = -L/usr/X11R6/lib -Wl,-rpath -Wl,/usr/X11R6/lib  -lX11 LIBTOOL = $(SHELL) $(top_builddir)/libtoolCOMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I$(basedir) -I$(srcdir) -I.LINK = $(CC) $(CFLAGS) $(LDFLAGS)# End of common section of the Makefile#-------------------------------------------------------------------------srcdir =	..PATH:		.first_rule: alldummy:subdirs = src doc rclock src/graphics src/testallsubdirs = W11 $(subdirs)DIST =	INSTALL README.configure configure Makefile Makefile.in ChangeLogDIST_CFG = autoconf/aclocal.m4 autoconf/xpm.m4 autoconf/libtool.m4 \	autoconf/configure.in  autoconf/config.h.in \	autoconf/Make.common.in autoconf/install-sh autoconf/mkinstalldirs \	autoconf/config.guess autoconf/config.sub \	autoconf/ltmain.sh \MKDIR = $(srcdir)/autoconf/mkinstalldirs#-------------------------------------------------------------------------all allbin alldoc tags:	@if test xnetbsdelf1.6Q = xcygwin; then (cd W11; ${MAKE} $@ || exit 1); fi	@for I in ${subdirs}; do (cd $$I; ${MAKE} $@ || exit 1); donerealclean: clean	$(RMF) config.h config.status config.log libtoolclean:	$(RMF) *~ config.cache	$(RMF) -r autom4te.cache	@if test xnetbsdelf1.6Q = xcygwin; then (cd W11; ${MAKE} $@ || exit 1); fi	@for I in ${subdirs}; do (cd $$I; ${MAKE} $@ || exit 1); done## entry points for other programs#rxvt:	(cd src; ${MAKE})clock:	(cd rclock; ${MAKE})graphics qplot:	(cd src/graphics; ${MAKE} qplot)tests:	(cd src/test; ${MAKE} tests)#-------------------------------------------------------------------------configure: autoconf/configure.in autoconf/aclocal.m4 autoconf/config.h.in	cd $(srcdir);	./.prebuildconfig.status:	if test -x config.status; then config.status --recheck; \	else $(SHELL) configure; fiautoconf/config.h.in: autoconf/configure.in	cd $(srcdir);	./.prebuildinstalldirs:	$(MKDIR) $(DESTDIR)$(bindir)	$(MKDIR) $(DESTDIR)$(mandir)install: installdirs	@if test xnetbsdelf1.6Q = xcygwin; then (cd W11; ${MAKE} $@ || exit 1); fi	@for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1); doneMakefiles:	$(SHELL) config.statuscleandir: realclean# distclean goal is for making a clean source tree, but if you have run# configure from a different directory, then doesn't destroy all your# hardly compiled and linked stuff. That's why there is always $(srcdir)/# In that case most of those commands do nothing, except cleaning *~# and cleaning source links.distclean:	(cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool)	@for I in $(allsubdirs); do (cd $$I; $(MAKE) $@ || exit 1); done	(cd $(srcdir); $(RMF) Makefile autoconf/Make.common)distdirs:	mkdir ../$(VERNAME);	mkdir ../$(VERNAME)/autoconf;	@for I in $(allsubdirs); do (cd $$I; $(MAKE) $@ || (echo "Failed to make distclean in $$I"; exit 0) ); donedistcopy:	$(CP) -p $(DIST) ../$(VERNAME);	$(CP) -p $(DIST_CFG) ../$(VERNAME)/autoconf;	@for I in $(allsubdirs); do (cd $$I; $(MAKE) $@ || exit 1); donedistrib: configure autoconf/config.h.in distdirs distcopytar.gz:  ../$(VERNAME).tar.gz../$(VERNAME).tar.gz:	(cd ..; tar cvf - $(VERNAME) | gzip -f9 > $(VERNAME).tar.gz)tar.Z: ../$(VERNAME).tar.Z../$(VERNAME).tar.Z:	(cd ..; tar cvf - $(VERNAME) | compress > $(VERNAME).tar.Z)tar.bz2: ../$(VERNAME).tar.bz2../$(VERNAME).tar.bz2:	(cd ..; tar cvf - $(VERNAME) | bzip2 -f9 > $(VERNAME).tar.bz2)uuencode: tar.gz	uuencode ../$(VERNAME).tar.gz $(VERNAME).tar.gz > ../$(VERNAME).tgz.uu# ------------------------------------------------------------------------

⌨️ 快捷键说明

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