30 lines
315 B
Makefile
30 lines
315 B
Makefile
SHELL:=/bin/bash
|
|
|
|
all: install
|
|
|
|
deps:
|
|
./bin/deps.sh
|
|
|
|
package:
|
|
./bin/package.sh
|
|
|
|
install:
|
|
./bin/install.sh
|
|
|
|
server:
|
|
./bin/server.sh
|
|
|
|
client:
|
|
./bin/client.sh
|
|
|
|
clean:
|
|
./bin/clean.sh
|
|
|
|
# test: test-unit test-integration
|
|
|
|
# test-unit:
|
|
# ./test/test-unit.sh
|
|
|
|
# test-integration:
|
|
# ./test/test-integration.sh
|