Newer
Older
Birte Kristina Friesel
committed
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
ifeq (${arduino}, 1)
COMMON_FLAGS += -DWITH_LOOP
endif
Birte Kristina Friesel
committed
clean: arch_clean
rm -f build/system.elf
.PHONY: clean