~cprov/cprov-snappy-test/065b072768583450971b79d15be02efe

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Celso Providelo
  • Date: 2014-10-29 04:43:44 UTC
  • Revision ID: git-v1:c1f179d8bbf90c73ad353133d434b3c08d48b6f2
initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
PYTHON=bpython
 
2
CELERY='celery'
 
3
 
 
4
clean:
 
5
        @echo "Cleanup workspace"
 
6
        @rm -f */*.pyc
 
7
 
 
8
start:
 
9
        DYLD_FALLBACK_LIBRARY_PATH=/usr/lib \
 
10
        $(CELERY) multi start 4 \
 
11
        -l INFO \
 
12
        -n 'local' \
 
13
        -c 1 \
 
14
        -E \
 
15
        --pidfile=%N.pid \
 
16
        --logfile=out.log \
 
17
        -A beetroot \
 
18
        -Q:1 celery -Q:2 build -Q:3 test -Q:4 publish
 
19
 
 
20
stop:
 
21
        DYLD_FALLBACK_LIBRARY_PATH=/usr/lib \
 
22
        $(CELERY) multi stopwait 4 \
 
23
        --pidfile=%N.pid
 
24
 
 
25
force-stop:
 
26
        DYLD_FALLBACK_LIBRARY_PATH=/usr/lib \
 
27
        $(CELERY) multi stop 4 \
 
28
        --pidfile=%N.pid
 
29
 
 
30
events:
 
31
        DYLD_FALLBACK_LIBRARY_PATH=/usr/lib $(CELERY) events
 
32
 
 
33
shell:
 
34
        DYLD_FALLBACK_LIBRARY_PATH=/usr/lib $(PYTHON)