]> git.evergreen-ils.org Git - OpenSRF.git/blob - Makefile
made the pid file reading smarter. removed the nasty killalls since they are no...
[OpenSRF.git] / Makefile
1 SHELL=/bin/bash
2 all:
3         @echo -e "\n * Run 'make verbose' to see full make output\n"
4         source install.conf && make -s -C src all
5
6 verbose:
7         source install.conf && make -C src all
8
9 jserver:
10         source install.conf && make -s -C src jserver
11
12 install:
13         source install.conf && make -s -C src install
14
15 jserver-install:
16         source install.conf && make -s -C src jserver-install
17
18 javascript-install:
19         source install.conf && make -s -C src javascript-install
20
21 clean:
22         make -s -C src clean
23