Files
openwrt/package/system/utils/fbtest/src/Makefile
Felix Fietkau 483dfb483e move a few packages to system/utils
SVN-Revision: 35375
2013-01-29 10:48:46 +00:00

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