mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-19 12:18:27 +02:00
dc851a55af
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30369 3c298f89-4303-0410-b956-a3cf2f4a3e73
15 lines
155 B
Makefile
15 lines
155 B
Makefile
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
|