blob: 23d1f02ac2c4cdbe85a46b1949d1f605fa049e2e [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001#
2# Makefile for libwifitest
3#
4
5# definitions
6# ------------------------------------------------------------------------------
7CFLAGS = -pipe -g -Os $(EXTRA_CFLAGS)
8
9# library info
10# ------------------------------------------------------------------------------
11
12# wifitest tool info
13PROGRAM = wifi_bt_mac_write
14# objects
15# ------------------------------------------------------------------------------
16
17# compiling and linking
18# ------------------------------------------------------------------------------
19all: $(PROGRAM)
20clean:
21 -rm -f $(OBJS) $(LIB) $(PROGRAM)
22$(PROGRAM): main.c
23 $(CC) -L . -lm -o $@ $<