# File: movie.make # Target: movie # Created: Tuesday, May 1, 2001 03:16:38 PM # Directory definitions - these should be altered for your system. # ================================================================ MaxDir = Macintosh HD:SDK Examples:MAX includes: CommonDir = Macintosh HD:SDK Examples:MSP common: # File and directory definitions - these should be relative to the above. # ======================================================================= MAKEFILE = movie.make ¥MondoBuild¥ = {MAKEFILE} # Make blank to avoid rebuilds when makefile is modified ObjDir = : Includes = ¶ -i "{MaxDir}" ¶ -i "{TargDir}" Sym-PPC = -sym off # Compiler Settings # note: -w 35 supresses "parameter not used" messages, and can be removed. # ======================================================================== SrcFiles = ¶ "movie.c" ¶ "{CommonDir}basic_c_strings.c" PPCCOptions = ¶ {Includes} ¶ {Sym-PPC} ¶ -opt speed,unroll,unswitch ¶ -typecheck relaxed ¶ -w 2,29,30,35 # Used Files - Relative to the exported Extern variable. # ====================================================== ObjFiles-PPC = ¶ "{ObjDir}movie.c.o" ¶ "{ObjDir}basic_c_strings.c.o" LibFiles-PPC = ¶ "{MaxDir}MaxLib" ¶ "{SharedLibraries}InterfaceLib" ¶ "{SharedLibraries}StdCLib" ¶ "{SharedLibraries}MathLib" ¶ "{SharedLibraries}QuickTimeLib" ¶ "{PPCLibraries}StdCRuntime.o" ¶ "{PPCLibraries}PPCCRuntime.o" ¶ "{PPCLibraries}PPCToolLibs.o" # Build Rules # =========== movie.c.o Ä movie.c {¥MondoBuild¥} {PPCC} movie.c -o movie.c.o {PPCCOptions} basic_c_strings.c.o Ä "{CommonDir}basic_c_strings.c" {¥MondoBuild¥} {PPCC} "{CommonDir}basic_c_strings.c" -o basic_c_strings.c.o {PPCCOptions} movie ÄÄ movie.c.o basic_c_strings.c.o {¥MondoBuild¥} PPCLink ¶ -o {Targ} ¶ {ObjFiles-PPC} ¶ {LibFiles-PPC} ¶ {Sym-PPC} ¶ -mf -d ¶ -t 'iLaF' ¶ -c 'max2' ¶ -xm s ¶ -fragname "movie" ¶ -export main ¶ -main main