mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 16:58:41 -05:00
15 lines
162 B
Makefile
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
|