summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2019-03-20 15:17:55 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2019-03-20 15:17:55 +0900
commit7ae351d00e6b6aa722fd9b3bca0b050d2bebe243 (patch)
tree9c6ef5d0794bcfe6cf8d031616b237934926fadb
parent38821c728cbd0531507cca76aac816b8428129fc (diff)
downloadbuildstream-7ae351d00e6b6aa722fd9b3bca0b050d2bebe243.tar.gz
Removing toplevel Makefile
This seems to be erronously added to the toplevel, the Makefile in the `requirements/` subdirectory is the correct one and is the latest version.
-rw-r--r--Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index c49a2e2d0..000000000
--- a/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-# Makefile for updating BuildStream's requirements files.
-#
-
-REQUIREMENTS_IN := $(wildcard *.in)
-REQUIREMENTS_TXT := $(REQUIREMENTS_IN:.in=.txt)
-PYTHON := python3
-VENV := $(PYTHON) -m venv
-
-VENV_PIP = $(VENVDIR)/bin/pip
-
-
-.PHONY: all
-
-all: $(REQUIREMENTS_TXT)
-
-%.txt: %.in
- $(eval VENVDIR := $(shell mktemp -d $(CURDIR)/.bst-venv.XXXXXX))
- $(VENV) $(VENVDIR)
- $(VENV_PIP) install -r $^
- $(VENV_PIP) freeze -r $^ > $@
- rm -rf $(VENVDIR)