Remove Makefile

This commit is contained in:
apio 2022-10-31 14:48:29 +01:00
parent 868597b70a
commit 79f7a285a2

View File

@ -1,26 +0,0 @@
CC := x86_64-luna-gcc
CXX := x86_64-luna-g++
ASM := nasm
AR := x86_64-luna-ar
LD := x86_64-luna-ld
build:
tools/sync-libc.sh
@$(MAKE) -C kernel build
@$(MAKE) -C libs build
@$(MAKE) -C apps build
clean: initrd-clean
@$(MAKE) -C kernel clean
@$(MAKE) -C libs clean
@$(MAKE) -C apps clean
initrd-clean:
rm -f $(LUNA_ROOT)/initrd/boot/moon.elf $(LUNA_ROOT)/Luna.iso
rm -rf $(LUNA_ROOT)/initrd/bin
install:
@$(MAKE) -C kernel install
@$(MAKE) -C libs install
@$(MAKE) -C apps install
@tools/install-built-ports.sh