mirror of
git://projects.qi-hardware.com/wernermisc.git
synced 2024-11-15 14:48:25 +02:00
13 lines
133 B
Makefile
13 lines
133 B
Makefile
CC=mipsel-openwrt-linux-uclibc-gcc
|
|
|
|
CFLAGS=-Wall -g
|
|
|
|
.PHONY: all clean spotless
|
|
|
|
all: spiio
|
|
|
|
clean:
|
|
rm -f spiio
|
|
|
|
spotless: clean
|