mirror of
git://projects.qi-hardware.com/wernermisc.git
synced 2024-11-15 16:21:32 +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
|