openwrtv3/package/utils/fbtest/src/Makefile
John Crispin 4ebf19b48f packages: clean up the package folder
Signed-off-by: John Crispin <blogic@openwrt.org>

SVN-Revision: 37007
2013-06-21 16:54:37 +00:00

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