13 lines
131 B
Makefile
13 lines
131 B
Makefile
|
|
SHELL := bash
|
||
|
|
|
||
|
|
default:
|
||
|
|
|
||
|
|
build:
|
||
|
|
time rosettacode sync
|
||
|
|
|
||
|
|
force: clean
|
||
|
|
$(RM) -r Lang/ Task/
|
||
|
|
|
||
|
|
clean:
|
||
|
|
$(RM) -r Meta/ rosettacode.log
|