Commit bd31bcb8 authored by Federico Vaga's avatar Federico Vaga

bld: add build/clean target to PySPEC

Signed-off-by: Federico Vaga's avatarFederico Vaga <federico.vaga@cern.ch>
parent 820781f4
......@@ -2,5 +2,6 @@
#
# SPDX-FileCopyrightText: 2020 CERN
build
*.pyc
MANIFEST
......@@ -6,9 +6,11 @@
TOP_DIR ?= $(shell pwd)/../..
include $(TOP_DIR)/common.mk
all:
all: build
clean:
install:
python3 setup.py install
rm -rf build
build install:
python3 setup.py $@
.PHONY: all clean install
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment