12 lines
247 B
Makefile
12 lines
247 B
Makefile
# 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
|