35 lines
396 B
Makefile
35 lines
396 B
Makefile
SHELL:=/bin/bash
|
|
|
|
.PHONY: all deps build deploy install server client clean
|
|
|
|
all: install
|
|
|
|
deps:
|
|
./bin/deps.sh
|
|
|
|
build:
|
|
./bin/build.sh
|
|
|
|
deploy:
|
|
./bin/deploy.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
|