1
0
mirror of https://github.com/vanhoefm/fragattacks.git synced 2025-02-17 17:43:06 -05:00

15 lines
162 B
Makefile
Raw Normal View History

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