mirror of
https://git.zx2c4.com/cgit/
synced 2024-11-04 06:00:44 +00:00
f49ea2c996
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
14 lines
115 B
Makefile
14 lines
115 B
Makefile
|
|
|
|
T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)
|
|
|
|
all: $(T)
|
|
|
|
$(T):
|
|
@./$@
|
|
|
|
clean:
|
|
$(RM) -rf trash
|
|
|
|
.PHONY: $(T) clean
|