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