1
0
mirror of git://projects.qi-hardware.com/antorcha.git synced 2024-11-01 20:09:41 +02:00
antorcha/tornado/fw/ben/Makefile

19 lines
225 B
Makefile

CC = mipsel-openwrt-linux-gcc
CFLAGS = -g -Wall -I.. -I.
LDFLAGS = -static
OBJS = ben.o mmc.o mmc-hw.o
.PHONY: all clean spotless
vpath %.c ..
all: ben
ben: $(OBJS)
clean:
rm -f $(OBJS)
spotless: clean
rm -f ben