1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-03-06 08:18:21 +02:00

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