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

📄 defs.make

📁 在电脑上通过此软件可以识别PS2游戏机的硬盘,可以通过网络或直接挂PS2游戏机的硬盘灌游戏光盘镜像文件进去,配合HDL工具使用,这是此工具的源码.
💻 MAKE
字号:
# _____     ___ ____     ___ ____#  ____|   |    ____|   |        | |____|# |     ___|   |____ ___|    ____| |    \    PS2DEV Open Source Project.#-----------------------------------------------------------------------# Copyright 2001-2004, ps2dev - http://www.ps2dev.org# Licenced under Academic Free License version 2.0# Review ps2sdk README & LICENSE files for further details.## $Id: Defs.make,v 1.1 2005/12/08 20:44:22 bobi Exp $ # You can override the following options on the make command line, or manually# edit them below.  Please see the file INSTALL for details on building# ps2sdk.## Definitions for the EE toolchain.#EE_TOOL_PREFIX = ee-EE_CC = $(EE_TOOL_PREFIX)gccEE_CXX = $(EE_TOOL_PREFIX)g++EE_AS = $(EE_TOOL_PREFIX)asEE_LD = $(EE_TOOL_PREFIX)ldEE_AR = $(EE_TOOL_PREFIX)arEE_OBJCOPY = $(EE_TOOL_PREFIX)objcopyEE_STRIP = $(EE_TOOL_PREFIX)strip## Defintions for the IOP toolchain.#IOP_TOOL_PREFIX = iop-IOP_CC = $(IOP_TOOL_PREFIX)gccIOP_AS = $(IOP_TOOL_PREFIX)asIOP_LD = $(IOP_TOOL_PREFIX)ldIOP_AR = $(IOP_TOOL_PREFIX)arIOP_OBJCOPY = $(IOP_TOOL_PREFIX)objcopyIOP_STRIP = $(IOP_TOOL_PREFIX)strip## Definitions for the local toolchain#CC = gccAS = asLD = ldAR = arOBJCOPY = objcopySTRIP = strip## Definitions for local shell operations#MKDIR = mkdirRMDIR = rmdirECHO  = echoGNUMAKE = makeSYSTEM = $(shell uname)ifeq ($(findstring Windows, $(SYSTEM)), Windows)  # these versions are used for the cygwin toolchain in a dos environment  # since they need to overwrite the standard dos versions of each command  MKDIR = cyg-mkdir  RMDIR = cyg-rmdir  ECHO  = cyg-echo  GNUMAKE = makeendififeq ($(findstring BSD, $(SYSTEM)), BSD)  # *BSD needs gnu make  GNUMAKE = gmakeendifMAKEREC = $(GNUMAKE) -C

⌨️ 快捷键说明

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