Autogeneration of MSP430-rgb-PWM-firmware works
[cerebrum.git] / msp / Makefile
blobf61fdfaceba5d787a0b09b04b306f34329008d69
2 MCU=msp430g2553
4 all: helights
6 program: helights
7 mspdebug -s $(SERIAL) rf2500 "prog helights"
9 helights: helights.c uart_io.c fifo.c comm.c
10 msp430-gcc -mmcu=$(MCU) -g -std=gnu99 -o helights helights.c uart_io.c fifo.c comm.c autocode.c -lm
12 clean:
13 rm helights || true