summaryrefslogtreecommitdiff
path: root/mp
blob: b0405b21a6cd69dfa85baf06826fca2dea878dae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#
# Copyright 2020 Birte Kristina 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