9 lines
94 B
Makefile
9 lines
94 B
Makefile
|
|
.PHONY: supershell
|
|
supershell: shell
|
|
|
|
.PHONY: shell
|
|
shell:
|
|
@echo "Running shell..."
|
|
@bash
|
|
|