[package] libpcap: explicitely disable libnl support to prevent different build resul...
[openwrt.git] / package / fbtest / src / Makefile
1 CC = gcc
2 CFLAGS = -Wall
3 OBJS = fbtest.o
4
5 all: fbtest
6
7 %.o: %.c
8 $(CC) $(CFLAGS) -c -o $@ $<
9
10 fbtest: $(OBJS)
11 $(CC) -o $@ $(OBJS)
12
13 clean:
14 rm -f rbcfg *.o
This page took 0.039872 seconds and 5 git commands to generate.