mirror of
https://git.disroot.org/pranav/pybatmesh.git
synced 2024-11-08 13:42:32 +05:30
Pranav Jerry
65e1906753
And updated README with the details. There is probably something missing in the Fedora installation section
38 lines
1.2 KiB
Makefile
38 lines
1.2 KiB
Makefile
# This makefile uses setup.py under the hood. In debian, and therefore
|
|
# ubuntu, and in fedora, python and pip are symlinks to python2 and pip2,
|
|
# not python3. So we have to specify python as python3 by default.
|
|
|
|
PYTHON := python3
|
|
PIP := pip3
|
|
|
|
# This can be changed when creating a package for your POSIX distribution
|
|
DESTDIR:= /
|
|
|
|
all: build
|
|
|
|
# Build only when naxalnet/__init__.py changes. We assume here that anyone
|
|
# creating a new commit will first update the __version__ in
|
|
# naxalnet/__init__.py
|
|
build: naxalnet/__init__.py
|
|
$(PYTHON) setup.py build
|
|
|
|
install:
|
|
$(PYTHON) setup.py install --root="$(DESTDIR)" --optimize=1 --skip-build
|
|
|
|
uninstall:
|
|
$(PIP) uninstall -y naxalnet
|
|
rm -rf /usr/share/naxalnet /usr/lib/systemd/system/naxalnet.service
|
|
@echo "make uninstall will not remove anything in /etc/naxalnet" && \
|
|
echo "Do 'sudo make purge' to remove it."
|
|
|
|
rpm:
|
|
$(PYTHON) setup.py bdist_rpm --requires python3-dasbus,python3-systemd,iwd,systemd-networkd
|
|
|
|
# Remove config files, like apt purge. Purge should first do what
|
|
# uninstall does, so we add uninstall as a dependency to this rule.
|
|
purge: uninstall
|
|
rm -rf /etc/naxalnet
|
|
|
|
clean:
|
|
rm -rf build *.egg-info **/__pycache__ dist
|