wip: add client base and basic router

This commit is contained in:
2025-05-02 10:08:29 +02:00
parent 96bf9303ea
commit 4af8c825bb
8 changed files with 126 additions and 9 deletions

View File

@@ -5,10 +5,16 @@ build: \
dst/release/theseus-server
.PHONY: run
run: dst/dev.toml
run: dst/dev.toml $(TARGETS_CLIENT)
cargo run --package theseus-server -- dst/dev.toml
dst/release/theseus-server: $(SRCS_RUST_THESEUS_SERVER)
cargo build --package theseus-server --release
.PHONY: clean
clean: client_clean
rm -rf dst
include config/make.mk
include client/make.mk
dst/release/theseus-server: $(SRCS_RUST_THESEUS_SERVER) $(TARGETS_CLIENT)
cargo build --package theseus-server --release
touch $@