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

📄 makefile.in

📁 gdb-6.0 linux 下的调试工具
💻 IN
字号:
# Copyright 1993, 1994, 2002 Free Software Foundation, Inc.# This file is part of SPU.# 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 of the License, 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.VPATH = @srcdir@SHELL = /bin/shprefix = @prefix@exec_prefix = @exec_prefix@bindir = @bindir@libdir = @libdir@datadir = @datadir@mandir = @mandir@infodir = @infodir@includedir = @includedir@srcdir = @srcdir@CC = @CC@CFLAGS = @CFLAGS@man1dir = $(mandir)/man1man2dir = $(mandir)/man2man3dir = $(mandir)/man3man4dir = $(mandir)/man4man5dir = $(mandir)/man5man6dir = $(mandir)/man6man7dir = $(mandir)/man7man8dir = $(mandir)/man8man9dir = $(mandir)/man9tooldir = $(libdir)/$(target_alias)INSTALL = @INSTALL@INSTALL_PROGRAM = $(INSTALL)INSTALL_DATA = $(INSTALL)# Where is the "include" directory?  Traditionally ../include or ./includeINCLUDE_DIR = ${srcdir}/../../include# All the includes used for CFLAGS and for lint.# -I. for config files.# -I${srcdir} possibly for regex.h also.# -I${srcdir}/config for more generic config files.INCLUDE_CFLAGS = -I. -I${srcdir} -I${srcdir}/config -I$(INCLUDE_DIR)# ALL_CFLAGS is the aggregate of all other *CFLAGS macros.ALL_CFLAGS = @DEFS@ $(INCLUDE_CFLAGS) $(CFLAGS)all: spuinfo:install:spu: spu.o	$(CC) $(CFLAGS) -o spu spu.o# Prevent Sun make from putting in the machine type.  Setting# TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.spu.o: $(srcdir)/spu.c	${CC} -c ${ALL_CFLAGS} $(srcdir)/spu.cmostlyclean:clean: mostlyclean	rm -f *.o spudistclean: clean	rm -f Makefile config.status config.log config.cachemaintainer-clean realclean: distcleanMakefile: $(srcdir)/Makefile.in config.status	./config.statusconfig.status: $(srcdir)/configure	./config.status --recheck$(srcdir)/configure: $(srcdir)/configure.in	cd $(srcdir) && autoconf

⌨️ 快捷键说明

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