mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37007 3c298f89-4303-0410-b956-a3cf2f4a3e73
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
|