mirror of
https://github.com/pikvm/ustreamer.git
synced 2026-02-19 16:26:30 +00:00
21 lines
259 B
Makefile
21 lines
259 B
Makefile
-include ../config.mk
|
|
|
|
DESTDIR ?=
|
|
PREFIX ?= /usr/local
|
|
|
|
PY ?= python3
|
|
|
|
|
|
# =====
|
|
all:
|
|
$(info == PY_BUILD ustreamer-*.so)
|
|
@ $(PY) setup.py build
|
|
|
|
|
|
install:
|
|
$(PY) setup.py install --prefix=$(PREFIX) --root=$(if $(DESTDIR),$(DESTDIR),/)
|
|
|
|
|
|
clean:
|
|
rm -rf build
|