quark/Makefile

17 líneas
284 B
Makefile
Original Vista normal Històric

2022-06-17 00:44:56 +02:00
.PHONY: quark
quark: build-dir kernel
2022-06-17 00:44:56 +02:00
include config/.conf
include scripts/toolchain.mk
include scripts/kernel.mk
include scripts/run.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)/**