85 lines
2.2 KiB
Makefile
85 lines
2.2 KiB
Makefile
ARGS=--all
|
|
|
|
default: help
|
|
|
|
# root of the project (makefile directory)
|
|
export ROOT_PATH=$(CURDIR)/
|
|
|
|
# dependecy install/build directory (rpclib, gtest, boost)
|
|
export INSTALLATION_DIR=$(ROOT_PATH)Build/
|
|
|
|
help:
|
|
@type "${CARLA_BUILD_TOOLS_FOLDER}\Windows.mk.help"
|
|
|
|
# use PHONY to force next line as command and avoid conflict with folders of the same name
|
|
.PHONY: import
|
|
import: server
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/Import.py" $(ARGS)
|
|
|
|
CarlaUE4Editor: LibCarla osm2odr
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildCarlaUE4.bat" --build $(ARGS)
|
|
|
|
launch: CarlaUE4Editor
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildCarlaUE4.bat" --launch $(ARGS)
|
|
|
|
launch-only:
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildCarlaUE4.bat" --launch $(ARGS)
|
|
|
|
package: PythonAPI
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/Package.bat" --ue-version 4.26 $(ARGS)
|
|
|
|
.PHONY: docs
|
|
docs:
|
|
@doxygen
|
|
@echo "Documentation index at ./Doxygen/html/index.html"
|
|
|
|
PythonAPI.docs:
|
|
python PythonAPI/docs/doc_gen.py
|
|
cd PythonAPI/docs && python bp_doc_gen.py
|
|
|
|
clean:
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/Package.bat" --clean --ue-version 4.26
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildCarlaUE4.bat" --clean
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildPythonAPI.bat" --clean
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildLibCarla.bat" --clean
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildOSM2ODR.bat" --clean
|
|
|
|
rebuild: setup
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildCarlaUE4.bat" --rebuild
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildLibCarla.bat" --rebuild
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildOSM2ODR.bat" --rebuild
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildPythonAPI.bat" --rebuild
|
|
|
|
check: PythonAPI
|
|
@echo "Not implemented!"
|
|
|
|
benchmark: LibCarla
|
|
@echo "Not implemented!"
|
|
|
|
.PHONY: PythonAPI
|
|
PythonAPI: LibCarla osm2odr
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildPythonAPI.bat" --py3
|
|
|
|
server: setup
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildLibCarla.bat" --server
|
|
|
|
client: setup
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildLibCarla.bat" --client
|
|
|
|
.PHONY: LibCarla
|
|
LibCarla: setup
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildLibCarla.bat" --server --client
|
|
|
|
setup:
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/Setup.bat" --boost-toolset msvc-14.2 $(ARGS)
|
|
|
|
.PHONY: Plugins
|
|
plugins:
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/Plugins.bat" $(ARGS)
|
|
|
|
deploy:
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/Deploy.bat" $(ARGS)
|
|
|
|
osm2odr:
|
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildOSM2ODR.bat" --build $(ARGS)
|