mirror of
https://github.com/kbeckmann/game-and-watch-retro-go.git
synced 2025-12-16 13:15:55 +01:00
18 lines
312 B
Plaintext
18 lines
312 B
Plaintext
|
|
# Build script for MPW shell
|
|
|
|
# Create object code folders (if necessary)
|
|
If !`Exists -d :obj68k:`
|
|
NewFolder obj68k
|
|
End
|
|
If !`Exists -d :objppc:`
|
|
NewFolder objppc
|
|
End
|
|
|
|
# Make
|
|
Make {Parameters} -f libmikmod.make >libmikmod.makeout
|
|
Execute libmikmod.makeout
|
|
Delete libmikmod.makeout
|
|
|
|
Echo "# Build complete!"
|
|
|