mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 08:51:13 +00:00
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
|