diff --git a/Makefile b/Makefile index 01b719c..2d55c6f 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,10 @@ -compile: - chmod +x ./tools/compile.py - ./tools/compile.py ./examples/execve3.py - -install: +install: pip install -e . clean: rm -rf build dist *.egg-info rm -rf examples/*.ll examples/*.o -all: install compile +all: clean install .PHONY: all clean