mirror of
https://github.com/LiBwrt-op/openwrt-6.x.git
synced 2025-12-31 00:01:39 +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
|