Commit a22e0280 authored by hasan  khaddour's avatar hasan khaddour

Add Make File

parent 22f01fce
# Compiler and Flags
PYTHON = python3
# Targets
.PHONY: all run demo clean
# Run the main program
run:
$(PYTHON) main.py
# Run the demo script
demo:
$(PYTHON) demo.py
# Clean temporary files or logs
clean:
rm -f *.pyc __pycache__/*
rmdir __pycache__ 2>/dev/null || true
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment