summaryrefslogtreecommitdiff
path: root/Makefile
blob: 468b1537dcbb4d9d2387a3f091fb3ee638c1cee3 (plain)
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