Skip to content

Commit

Permalink
Polish Makefile to support AlphaRTC as a submodule (#49)
Browse files Browse the repository at this point in the history
Signed-off-by: Ze Gan <ganze718@gmail.com>
  • Loading branch information
Pterosaur authored Jan 4, 2021
1 parent 9ca3356 commit c24ca8b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ target_bin_dir := $(target_dir)/bin

compile_docker := alphartc-compile
release_docker := alphartc
docker_workdir := /app/AlphaRTC/

docker_flags := --rm -v `pwd`:$(docker_workdir)
host_workdir := `pwd`
docker_homedir := /app/AlphaRTC/
docker_workdir := $(docker_homedir)

docker_flags := --rm -v $(host_workdir):$(docker_homedir) -w $(docker_workdir)
gn_flags := --args='is_debug=false'

all: init sync app release
Expand Down

0 comments on commit c24ca8b

Please sign in to comment.