mirror of
https://git.zx2c4.com/cgit
synced 2024-11-10 02:28:41 +00:00
14 lines
113 B
Makefile
14 lines
113 B
Makefile
|
|
||
|
|
||
|
T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)
|
||
|
|
||
|
all: $(T)
|
||
|
|
||
|
$(T):
|
||
|
@$@
|
||
|
|
||
|
clean:
|
||
|
$(RM) -rf trash
|
||
|
|
||
|
.PHONY: $(T) clean
|