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