mirror of
https://github.com/gryf/wicd.git
synced 2025-12-21 13:28:08 +01:00
- Add 3rd party python libraries used by ioctl backend to tree and to setup.py - Port several bug fixes from the trunk (removing reliance on shell for running external commands, unicode fixes, gui crash fixes, authentication validation improvements, several others) - Fix some crashes in ioctl backend. - Change daemon/GUI launch scripts to use the -O flag.
19 lines
240 B
Makefile
19 lines
240 B
Makefile
PYTHON ?= python
|
|
SETUP := setup.py
|
|
|
|
build:
|
|
$(PYTHON) $(SETUP) $@
|
|
|
|
install:
|
|
ifdef DESTDIR
|
|
$(PYTHON) $(SETUP) $@ --root=$(DESTDIR)
|
|
else
|
|
$(PYTHON) $(SETUP) $@
|
|
endif
|
|
|
|
clean:
|
|
$(PYTHON) $(SETUP) $@
|
|
rm -rf build
|
|
|
|
.PHONY: build install clean
|