11 lines
148 B
Makefile
11 lines
148 B
Makefile
# Makefile
|
|
|
|
SCRIPTS_DIR := ./Scripts
|
|
|
|
# Default target
|
|
all: setup
|
|
|
|
# Bootstrap entrypoint for first-run setup.
|
|
setup:
|
|
bash $(SCRIPTS_DIR)/setup.sh
|