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

📄 makefile.in

📁 读取音乐光盘磁道为磁盘文件的程序
💻 IN
字号:
# $Id: Makefile.in,v 1.1 1996/01/10 09:37:30 jim Exp $## Master Makefile for read_cdda# There is nothing really configurable in here.## $Log: Makefile.in,v $# Revision 1.1  1996/01/10 09:37:30  jim# Initial revision### 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., 675 Mass Ave, Cambridge, MA 02139, USA.# This directory's subdirectories are mostly independent; you can cd# into them and run `make' without going through this Makefile.# To change the values of `make' variables: instead of editing Makefiles,# (1) if the variable is set in `config.status', edit `config.status'#     (which will cause the Makefiles to be regenerated when you run `make');# (2) otherwise, pass the desired values on the `make' command line.srcdir	= @srcdir@VPATH 	= @srcdir@prefix 	= @prefix@exec_prefix = @exec_prefix@bindir 	= $(exec_prefix)/binlibdir 	= $(exec_prefix)/libdatadir	= $(prefix)/libmandir 	= $(prefix)/man/man1SHELL 	= /bin/shDISTFILES = Makefile.in mkinstalldirs README NEWS INSTALL LICENSE\configure configure.in install-shPROGS   = read_cdda# Sindirectories to run make in for the primary targets.SUBDIRS = lib srcall:	for dir in $(SUBDIRS); do \	  echo making $@ in $$dir ; \	  (cd $$dir; $(MAKE) $@) ; \	done$(PROGS):	cd lib; $(MAKE) all	cd src; $(MAKE) $@Makefile: config.status $(srcdir)/Makefile.in $(srcdir)/lib/Makefile.in \	$(srcdir)/src/Makefile.in	$(SHELL) config.statusconfig.status: configure	$(SHELL) config.status --recheckconfigure: configure.in	cd $(srcdir); autoconf# Make sure all installation directories, e.g. $(bindir) actually exist by# making them if necessary.installdirs:	$(SHELL) $(srcdir)/mkinstalldirs \	  $(bindir) $(datadir) $(libdir) $(infodir) $(mandir)install:: installdirsinstall uninstall TAGS clean mostlyclean distclean realclean::	for dir in $(SUBDIRS); do \	  echo making $@ in $$dir ; \	  (cd $$dir; $(MAKE) $@) ; \	donedistclean realclean::	rm -f Makefile config.status config.h stamp-config config.cache config.log# Make the distribution tar filedist: $(DISTFILES)	echo read_cdda-`sed -e '/version_string/!d' \	    -e 's/[^0-9.]*\([0-9.a-z]*\).*/\1/' -e q src/version.c` > .fname	rm -rf `cat .fname`	mkdir `cat .fname`	ln $(DISTFILES) `cat .fname`	for dir in $(SUBDIRS); do \	  mkdir `cat .fname`/$$dir; \	  (cd $$dir; $(MAKE) $@); \	done	tar -chvf `cat .fname`.tar `cat .fname`	gzip `cat .fname`.tar	rm -rf `cat .fname` .fname# Tell versions [3.59,3.63) of GNU make not to export all variables.# Otherwise a system limit (for SysV at least) may be exceeded..NOEXPORT:

⌨️ 快捷键说明

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