# Makefile

SCRIPTS_DIR := ./Scripts

# Default target
all: setup

# Bootstrap entrypoint for first-run setup.
# This intentionally keeps Make lightweight: base packages, then restow dotfiles.
setup:
	bash $(SCRIPTS_DIR)/setup.sh --bootstrap-only
