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