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

📄 makefile.in

📁 读取音乐光盘磁道为磁盘文件的程序
💻 IN
字号:
# $Id: Makefile.in,v 1.6 1997/10/14 06:31:16 jim Exp jim $## Makefile for read_cdda# Created by Jim Mintha on Wed Jan 10 01:06:50 PST 1996# Copyright (C) 1995 Jim Mintha## $Log: Makefile.in,v $# Revision 1.6  1997/10/14 06:31:16  jim# added man page## Revision 1.5  1996/01/18 14:24:08  jim# Fix install## Revision 1.4  1996/01/18 14:07:06  jim# Added drv_type source file## Revision 1.3  1996/01/10 09:13:56  jim# Added mostlyclean to distclean## Revision 1.2  1996/01/10 09:07:38  jim# got rid of X stuff added dependencies## Revision 1.1  1996/01/10 09:06:32  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.SHELL = /bin/shSRCDIR  = @srcdir@VPATH   = @srcdir@prefix = @prefix@exec_prefix = @exec_prefix@bindir = $(exec_prefix)/binlibdir = $(exec_prefix)/libmandir = $(exec_prefix)/man/man1INSTALL = @INSTALL@CC      = @CC@DEFS    = @DEFS@LIBS    = @LIBS@ -L../lib -ljimCFLAGS  = @CFLAGS@ LDFLAGS = @LDFLAGS@SOURCES = version.c read_cdda.c drv_type.c cdda2au.cOBJECTS = version.o read_cdda.o drv_type.oHEADERS = version.h read_cdda.hDISTFILES = Makefile.in $(SOURCES) $(HEADERS) read_cdda.1PROGS   = read_cdda cdda2auall:	$(PROGS)incl 	= -I$(SRCDIR)/../lib.c.o:	$(CC) -c $(CPPFLAGS) $(DEFS) $(incl) $(CFLAGS) $<install:  all	$(INSTALL) read_cdda $(bindir)/read_cdda	$(INSTALL) read_cdda.1 $(mandir)/read_cdda.1TAGS: $(SOURCES)	etags $(SOURCES)check:clean:	/bin/rm -f *.o core *~ \#*mostlyclean: clean	/bin/rm -f $(PROGS) $(OBJECTS)distclean: clean mostlyclean	/bin/rm -f Makefilerealclean: distcleandist: $(DISTFILES)	ln $(DISTFILES) ../`cat ../.fname`/src$(PROGS): ../lib/libjim.a version.oread_cdda: $(OBJECTS)	$(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(LIBS)cdda2au: cdda2au.o	$(CC) $(LDFLAGS) -o $@ cdda2au.o $(LIBS)# 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:# Dependecies$(OBJECTS):	../lib/gen_utils.h read_cdda.h

⌨️ 快捷键说明

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