quark/Makefile

18 líneas
311 B
Makefile
Original Vista normal Històric

2022-06-17 00:44:56 +02:00
.PHONY: quark
2022-06-20 13:48:40 +02:00
quark: build-dir kernel iso
2022-06-17 00:44:56 +02:00
include config/.conf
include scripts/toolchain.mk
include scripts/kernel.mk
include scripts/run.mk
2022-06-20 13:48:40 +02:00
include scripts/iso.mk
.PHONY: build-dir
build-dir:
@mkdir -p $(BUILD_DIR)
2022-06-17 00:44:56 +02:00
@echo -e $(ARROW) "Created build directory"
.PHONY: clean
clean:
@rm -rf $(BUILD_DIR)/**