summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.van.berkom@gmail.com>2019-03-20 07:37:03 +0000
committerTristan Van Berkom <tristan.van.berkom@gmail.com>2019-03-20 07:37:03 +0000
commit87e00dd789bf0cae25a4390ae60e36babd5e1493 (patch)
tree9c6ef5d0794bcfe6cf8d031616b237934926fadb
parent38821c728cbd0531507cca76aac816b8428129fc (diff)
parent7ae351d00e6b6aa722fd9b3bca0b050d2bebe243 (diff)
downloadbuildstream-87e00dd789bf0cae25a4390ae60e36babd5e1493.tar.gz
Merge branch 'tristan/remove-toplevel-makefile-1.2' into 'bst-1.2'
Removing toplevel Makefile See merge request BuildStream/buildstream!1242
-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)