SHELL=/bin/bash

.DEFAULT_GOAL := help

.PHONY: help codemode-example codemode-patterns

help:
	@echo "Targets:"
	@echo "  codemode-example   Run the Codemode example"
	@echo "  codemode-patterns  Run the Codemode patterns example"

codemode-example:
	python codemode_example.py

codemode-patterns:
	python codemode_patterns_example.py
