1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
default: build/system.elf INCLUDES = -Iinclude COMMON_FLAGS = -g -Os -Wall -Wextra -unused CFLAGS = -std=c99 CXXFLAGS = -std=c++14 TARGETS = src/os/main.cc include src/arch/${arch}/Makefile.inc clean: arch_clean rm -f build/system.elf .PHONY: clean