mirror of
https://github.com/silverstripe/doc.silverstripe.org
synced 2024-10-22 17:05:50 +02:00
19 lines
356 B
Makefile
19 lines
356 B
Makefile
all:
|
|
@echo "Available commands:"
|
|
@grep "^[^#[:space:]].*:$$" Makefile
|
|
|
|
update:
|
|
@make fetch
|
|
@make index
|
|
|
|
fetch:
|
|
@./bin/update.sh $(CURDIR)
|
|
|
|
index:
|
|
@mkdir -p $(CURDIR)/silverstripe-cache/
|
|
@php framework/cli-script.php dev/tasks/RebuildLuceneDocsIndex flush=1
|
|
|
|
test:
|
|
$(MAKE) QUERYSTRING="$(QUERYSTRING)&SkipTests=RestfulServiceTest" -C sapphire test
|
|
|