mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-01-30 13:03:09 +01:00
14 lines
155 B
Makefile
14 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
|