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

📄 libmikmod.make

📁 这是著名的TCPMP播放器在WINDWOWS,和WINCE下编译通过的源程序.笔者对其中的LIBMAD库做了针对ARM MPU的优化. 并增加了词幕功能.
💻 MAKE
字号:

#	Makefile for MPW (Macintosh Programmers Workshop by Apple)
#                http://developer.apple.com/tools/mpw-tools/
#
#   File:       libmikmod.make
#   Target:     libmikmod
#
#   Builds for 680X0 and PowerPC "classic" Macintosh.
#
#   currently the 68K build doesn't work because the
#   default Symantec compiler lacks "long long" (64-bit)
#   int support and also support for prefix header files.
#   (Switching to another compiler such as the one from
#    "Metrowerks CodeWarrior for MPW" could work, though)
#   Another approach would be to rewrite the code using
#   the SInt64 type and macros. Using a "Math64" subdir.
#
#	Build with: make -f libmikmod.make [Remove|Remove-All]
#
#	Written by Anders F Bj歳klund <afb@algonet.se>

MAKEFILE        = "libmikmod.make"
MikModDir	 	=  "::"

LibStatic68K	= "libmikmod.o"
LibShared68K	= "libmikmod68K.dll"
LibStub68K		= "libmikmod68K.lib"

LibStaticPPC	= "libmikmod.x"
LibSharedPPC	= "libmikmodPPC.dll"
LibStubPPC		= "libmikmodPPC.lib"

LibNameFat		= "libmikmod"
StubNameFat		= "libmikmodStub"

Header          = "mikmod.h"
Export          = "libmikmod.exp"

#------------------------------------------------------------------------------
# Choose your tools and libraries:

CC68K           = SC
CCPPC           = MrC

LIB68K          = Lib
LIBPPC          = PPCLink -xm l

LINK68K         = ILink   -xm s
LINKPPC         = PPCLink -xm s

STUB68K         = MakeStub -arch m68k
STUBPPC         = MakeStub -arch pwpc

#------------------------------------------------------------------------------
# File locations:

Headers    = -i "{MikModDir}include:" 

⌨️ 快捷键说明

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