Skip to content

Commit

Permalink
add basic build for pyspec
Browse files Browse the repository at this point in the history
  • Loading branch information
djrtwo committed Sep 9, 2019
1 parent 9935236 commit aca5244
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Makefile
@@ -0,0 +1,14 @@
SPEC_DIR = ./eth2.0-specs

.PHONY: clean pyspec

all: pyspec

clean:
cd $(SPEC_DIR) && $(MAKE) clean

pyspec:
cd $(SPEC_DIR) && $(MAKE) pyspec

build: pyspec
python3 -m venv venv; . venv/bin/activate; pip3 install -r requirements.txt
1 change: 1 addition & 0 deletions requirements.txt
@@ -0,0 +1 @@
./eth2.0-specs/test_libs/pyspec/

0 comments on commit aca5244

Please sign in to comment.