13 lines
369 B
Makefile
13 lines
369 B
Makefile
build: $(LUNA_ROOT)/kernel/bin/moon.elf apps-build libc-build
|
|
|
|
clean: moon-clean initrd-clean apps-clean libc-clean
|
|
|
|
initrd-clean:
|
|
rm -f $(LUNA_ROOT)/initrd/boot/moon.elf $(LUNA_ROOT)/Luna.iso
|
|
rm -rf $(LUNA_ROOT)/initrd/bin
|
|
|
|
install: $(LUNA_ROOT)/initrd/boot/moon.elf apps-install libc-install
|
|
|
|
include kernel/Makefile
|
|
include apps/Makefile
|
|
include libs/libc/Makefile |