old-MTGos-old/Makefile
2016-04-26 20:43:12 +02:00

16 lines
176 B
Makefile

all: mtgos user
mtgos:
make -C kernel
mv kernel/mtgos mtgos
user:
make -C user
mv user/*.elf .
clean:
make -C kernel clean
rm -rf mtgos
.PHONY: all mtgos user clean