Files
ben-blinkenlights/video/Makefile
T

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