blob: 2193831638ce6023cc773fe02dae9ddc2d49843f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/env bash
set -e
#
# Dist clean script for libopenmpt.
#
# This is meant to be run by the libopenmpt maintainers.
#
# WARNING: The script expects the be run from the root of an OpenMPT svn
# checkout. It invests no effort in verifying this precondition.
#
# We want ccache
export PATH="/usr/lib/ccache:$PATH"
# Clean dist
make NO_SDL=1 NO_SDL2=1 clean-dist
# Clean
make NO_SDL=1 NO_SDL2=1 clean
|