mirror of
git://projects.qi-hardware.com/ben-blinkenlights.git
synced 2025-01-27 21:31:06 +02:00
20 lines
254 B
Makefile
20 lines
254 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: video
|
||
|
|
||
|
asm: video.c
|
||
|
$(CC) $(CFLAGS) -S $<
|
||
|
|
||
|
sch:
|
||
|
eeschema `pwd`/ubb-vga.sch
|
||
|
|
||
|
clean:
|
||
|
rm -f video
|
||
|
|
||
|
spotless: clean
|