mirror of
git://projects.qi-hardware.com/ben-blinkenlights.git
synced 2024-11-27 16:51:53 +02:00
a759723ed1
- ubb-vga2.c: use the MMC controler to stream the pixel data - Makefile (all, clean): added ubb-vga2
20 lines
278 B
Makefile
20 lines
278 B
Makefile
#CC=mipsel-openwrt-linux-uclibc-gcc
|
|
CC=mipsel-linux-gcc
|
|
|
|
CFLAGS=-Wall -g -O9 -march=mips32
|
|
|
|
.PHONY: all asm sch clean spotless
|
|
|
|
all: ubb-vga ubb-vga2
|
|
|
|
asm: ubb-vga.c
|
|
$(CC) $(CFLAGS) -S $<
|
|
|
|
sch:
|
|
eeschema `pwd`/ubb-vga.sch
|
|
|
|
clean:
|
|
rm -f ubb-vga ubb-vga2
|
|
|
|
spotless: clean
|