réplica de
https://github.com/Arnau478/quark.git
synced 2024-11-23 12:58:07 +01:00
17 líneas
311 B
Makefile
17 líneas
311 B
Makefile
.PHONY: quark
|
|
quark: build-dir kernel iso
|
|
|
|
include config/.conf
|
|
include scripts/toolchain.mk
|
|
include scripts/kernel.mk
|
|
include scripts/run.mk
|
|
include scripts/iso.mk
|
|
|
|
.PHONY: build-dir
|
|
build-dir:
|
|
@mkdir -p $(BUILD_DIR)
|
|
@echo -e $(ARROW) "Created build directory"
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
@rm -rf $(BUILD_DIR)/**
|