Skip to content

Instantly share code, notes, and snippets.

@pourmand1376
Created May 12, 2026 06:44
Show Gist options
  • Select an option

  • Save pourmand1376/4ef2d45927ed1510190c5dde959d019e to your computer and use it in GitHub Desktop.

Select an option

Save pourmand1376/4ef2d45927ed1510190c5dde959d019e to your computer and use it in GitHub Desktop.
Makefile to Justfile Migration
.PHONY: warn
.DEFAULT_GOAL := warn
# This catches 'make <any-target>'
.DEFAULT:
@$(MAKE) warn
# The logic (defined once, called once)
warn:
@echo ""
@echo " ============================================================================"
@echo " 🛑 THIS REPO HAS MIGRATED TO JUSTFILE"
@echo " ============================================================================"
@echo " The Makefile is kept ONLY for historical reference."
@echo ""
@echo " Install just: https://just.systems/man/en/introduction.html"
@echo " brew install just"
@echo ""
@echo " Run \`just\` or \`just help\` to see all available recipes."
@echo " ============================================================================"
@echo ""
@echo " Attempting to list available 'just' recipes for you:"
@echo ""
@just --list || echo " [!] 'just' is not installed. Please install it to continue."
@echo ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment