mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 17:10:44 +08:00
23 lines
370 B
Makefile
23 lines
370 B
Makefile
CPPFLAGS += -I..
|
|
CFLAGS += -DTIMER_BOOTWAIT=1000 -DTIMER_SHUTDOWN=1000 -DTIMER_POWEROFF=1000
|
|
OFLAG ?= -Og
|
|
DEBUG ?= -g
|
|
|
|
VPATH = ..
|
|
|
|
# Ensure malloc is available when debugging
|
|
OBJS += force_malloc.o
|
|
|
|
ifeq ($(TRACE), 1)
|
|
OBJS += simavr.o
|
|
endif
|
|
|
|
%.svg: %.dot
|
|
dot -T svg -o $@ $<
|
|
|
|
include ../Makefile
|
|
|
|
.PHONY: simavr
|
|
simavr:
|
|
simavr -m attiny85 -f 1000000 pipower.elf -t -g
|