old-MTGos-old/Makefile

13 lines
128 B
Makefile
Raw Normal View History

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