changeset 25 | adf9e5eea0ed |
parent 24 | 02c6b4c97bd0 |
24:02c6b4c97bd0 | 25:adf9e5eea0ed |
---|---|
1 BIN = mimecut |
|
2 CLEANFILES = $(BIN) |
|
3 |
|
4 .PHONY: all clean install test |
|
5 |
|
6 all: $(BIN) |
|
7 |
|
8 test: all |
|
9 @rm .verbose 2>/dev/null && O=--verbose;\ |
|
10 prove $$O --timer t/ |
|
11 |
|
12 verbose: |
|
13 @touch .verbose |
|
14 |
|
15 clean: ; -rm -f $(CLEANFILES) |
|
16 |
|
17 %: %.pl |
|
18 # $< |
|
19 @perl -c - <$< |
|
20 @cp -f $< $@ |
|
21 @chmod a-w,+x $@ |