mirror of
https://github.com/aljazceru/ark.git
synced 2026-01-11 15:54:19 +01:00
20 lines
500 B
Makefile
20 lines
500 B
Makefile
.PHONY: build-server build-client build-all-server build-all-client
|
|
|
|
build-server:
|
|
@echo "Building arkd binary..."
|
|
@bash ./server/scripts/build
|
|
|
|
build-client:
|
|
@echo "Building ark binary..."
|
|
@bash ./client/scripts/build
|
|
|
|
build-all-server:
|
|
@echo "Building arkd binary for all archs..."
|
|
@bash ./server/scripts/build-all
|
|
|
|
build-all-client:
|
|
@echo "Building ark binary for all archs..."
|
|
@bash ./client/scripts/build-all
|
|
|
|
build: build-server build-client
|
|
build-all: build-all-server build-all-client |