You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hostap/wpaspy/Makefile

16 lines
176 B
Makefile

all: build
SRC=wpaspy.c
.PHONY: build
build: $(SRC) setup.py
python setup.py build
install:
python setup.py install
clean:
python setup.py clean
rm -f *~
rm -rf build