File: BuildLibmikmod

package info (click to toggle)
libmikmod 3.3.13-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,188 kB
  • sloc: ansic: 36,299; sh: 5,013; makefile: 548; javascript: 1
file content (18 lines) | stat: -rw-r--r-- 329 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

# 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!"