From 494cf1d847aae60abf42355a63722ee8071d841c Mon Sep 17 00:00:00 2001 From: Alexis Durgnat <alexis.durgnat@hesge.ch> Date: Fri, 21 Jun 2024 12:02:24 +0200 Subject: [PATCH] Add python build makefile --- src/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/Makefile diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..82ef823 --- /dev/null +++ b/src/Makefile @@ -0,0 +1,10 @@ +default_target: wheel + +wheel: + cp -f ../sandbox_wrapper.cpython* ./ar_sandbox/wrapper + . ../.venv-build/bin/activate + python -m build .. + + +clean: + rm -f ../dist/* \ No newline at end of file -- GitLab