1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-19 14:29:43 +02:00
openwrt-xburst/package/fbtest/src/Makefile

15 lines
155 B
Makefile
Raw Normal View History

CC = gcc
CFLAGS = -Wall
OBJS = fbtest.o
all: fbtest
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
fbtest: $(OBJS)
$(CC) -o $@ $(OBJS)
clean:
rm -f rbcfg *.o