We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43e61ba commit 1c7c700Copy full SHA for 1c7c700
Makefile
@@ -1,8 +1,18 @@
1
PKG_NAMESPACE = yhttp.dev
2
PKG_NAME = yhttp-dev
3
-include make/common.mk
4
-include make/venv.mk
5
-include make/install.mk
6
-include make/lint.mk
7
-include make/dist.mk
8
-include make/pypi.mk
+
+# Assert the python-makelib version
+PYTHON_MAKELIB_VERSION_REQUIRED = 1.4.1
9
+# Ensure the python-makelib is installed
10
+PYTHON_MAKELIB_PATH = /usr/local/lib/python-makelib
11
+ifeq ("", "$(wildcard $(PYTHON_MAKELIB_PATH))")
12
+ MAKELIB_URL = https://github.com/pylover/python-makelib
13
+ $(error python-makelib is not installed. see "$(MAKELIB_URL)")
14
+endif
15
16
17
+# Include a proper bundle rule file.
18
+include $(PYTHON_MAKELIB_PATH)/venv-lint-test-pypi.mk
0 commit comments