.PHONY: install uninstall help

# Default target
help:
	@echo "Odoo Deploy Tool - Installation Commands"
	@echo ""
	@echo "Available targets:"
	@echo "  install    - Install odoo-dev tool (creates symlink)"
	@echo "  uninstall  - Remove odoo-dev tool (removes symlink)"
	@echo "  help       - Show this help message"
	@echo ""
	@echo "Installation will create a symlink to odoo-dev.sh in:"
	@echo "  /usr/local/bin (system-wide, requires sudo if not writable)"
	@echo "  ~/bin (user-only, already in PATH)"

install:
	@./install.sh

uninstall:
	@chmod +x uninstall.sh
	@./uninstall.sh
