20da5c8986
This allows Python to be used to control wpa_supplicant/hostapd through the control interface. Signed-hostap: Jouni Malinen <j@w1.fi>
14 lines
162 B
Makefile
14 lines
162 B
Makefile
all: build
|
|
|
|
SRC=wpaspy.c
|
|
|
|
build: $(SRC) setup.py
|
|
python setup.py build
|
|
|
|
install:
|
|
python setup.py install
|
|
|
|
clean:
|
|
python setup.py clean
|
|
rm -f *~
|
|
rm -rf build
|