summaryrefslogtreecommitdiff
path: root/mp
blob: 703dcb0de31c546c5d6864a84dc1ebe80c47f6ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#
# Copyright 2020 Daniel Friesel
#
# SPDX-License-Identifier: CC0-1.0

set -e

find src -name '*.o' -delete
find src -name '*.obj' -delete
rm -f build/system.elf

for i in info program; do
	make "$@" $i
done