From 475e07c4e2aca74e13fe66c243198dc49fe5bb08 Mon Sep 17 00:00:00 2001 From: varun-r-mallya Date: Wed, 1 Oct 2025 00:09:05 +0530 Subject: [PATCH] update makefile --- Makefile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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