2012-09-09 18:20:09 +12:00
|
|
|
all:
|
|
|
|
@echo "Available commands:"
|
|
|
|
@grep "^[^#[:space:]].*:$$" Makefile
|
2012-06-20 15:45:48 +00:00
|
|
|
|
2012-09-09 18:20:09 +12:00
|
|
|
update:
|
|
|
|
@make fetch
|
|
|
|
@make index
|
2011-07-04 06:29:57 +00:00
|
|
|
|
2012-09-09 18:20:09 +12:00
|
|
|
fetch:
|
|
|
|
@./bin/update.sh $(CURDIR)
|
2012-09-05 21:43:50 +12:00
|
|
|
|
2012-09-09 18:20:09 +12:00
|
|
|
index:
|
|
|
|
@mkdir -p $(CURDIR)/silverstripe-cache/
|
|
|
|
@php framework/cli-script.php dev/tasks/RebuildLuceneDocsIndex flush=1
|
2011-01-16 22:58:24 +00:00
|
|
|
|
2010-08-02 10:06:21 +00:00
|
|
|
test:
|
2011-01-17 21:03:37 +00:00
|
|
|
$(MAKE) QUERYSTRING="$(QUERYSTRING)&SkipTests=RestfulServiceTest" -C sapphire test
|
2010-08-02 10:06:21 +00:00
|
|
|
|