1
0
mirror of git://projects.qi-hardware.com/ben-blinkenlights.git synced 2025-01-27 21:31:06 +02:00

20 lines
254 B
Makefile
Raw Normal View History

2011-04-24 02:36:56 -03:00
#CC=mipsel-openwrt-linux-uclibc-gcc
CC=mipsel-linux-gcc
CFLAGS=-Wall -g -O9 -march=mips32
.PHONY: all asm sch clean spotless
all: video
asm: video.c
$(CC) $(CFLAGS) -S $<
sch:
eeschema `pwd`/ubb-vga.sch
clean:
rm -f video
spotless: clean