4 lines
66 B
Makefile
4 lines
66 B
Makefile
.PHONY = all
|
|
|
|
all:
|
|
@for x in *.sh ; do sh "$$x" || exit 1 ; done
|