Created
May 12, 2026 06:44
-
-
Save pourmand1376/4ef2d45927ed1510190c5dde959d019e to your computer and use it in GitHub Desktop.
Makefile to Justfile Migration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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