summaryrefslogtreecommitdiff
path: root/mpm
blob: 021e5f54ecde39522106db562e64b36916955a3e (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 monitor; do
	make "$@" $i
done