libmikmod.make
资源名称:tcpmp.rar [点击查看]
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:9k
源码类别:
Windows CE
开发平台:
C/C++
- # 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:"