osd-contiki/platform/stm32f107_basic/Makefile
Jeff Ciesielski 222f93f023 stm32f107_basic: Add support for a simple stm32f107 platform
This platform is a basic waveshare stm32f107 devkit which contains a
USART, USB device port, some buttons and some LEDs.  Unfortunately not
enough to bring up networking, but enough to test building and a
simple contiki shell
2013-02-06 15:43:25 -08:00

27 lines
470 B
Makefile

TARGET=stm32f107_basic
all: stm32f107_basic
CONTIKI=../..
CONTIKI_TARGET_MAIN=contiki-main.c
PROJECT_SOURCEFILES = parity.c
randgen: randgen.c
gcc -DNDEBUG -I $(CONTIKI)/cpu/arm/stm32f107/ -I . -I $(CONTIKI)/core randgen.c -o randgen
randcheck: randcheck.c
gcc -DNDEBUG -I $(CONTIKI)/cpu/arm/stm32f107/ -I . -I $(CONTIKI)/core randcheck.c -o randcheck
clean: stm32test_clean
.PHONY: stm32test_clean
stm32test_clean:
include $(CONTIKI)/Makefile.include