1
0
mirror of https://github.com/vanhoefm/fragattacks.git synced 2025-02-17 09:33:05 -05:00
Jouni Malinen 20da5c8986 wpaspy: Add Python bindings for wpa_ctrl
This allows Python to be used to control wpa_supplicant/hostapd through
the control interface.

Signed-hostap: Jouni Malinen <j@w1.fi>
2013-03-01 23:27:56 +02:00

15 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