Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VSS to DDS-IDL exporter inclusion in make file #455

Merged
merged 1 commit into from
Jun 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
# Makefile to generate specifications
#

.PHONY: clean all travis_targets json franca yaml csv tests binary protobuf ttl graphql ocf c install deploy
.PHONY: clean all travis_targets json franca yaml csv ddsidl tests binary protobuf ttl graphql ocf c install deploy

all: clean json franca yaml csv binary tests protobuf graphql
all: clean json franca yaml csv ddsidl binary tests protobuf graphql

# All mandatory targets that shall be built and pass on each pull request for
# vehicle-signal-specification or vss-tools
travis_targets: clean json franca yaml binary csv tests deploy graphql
travis_targets: clean json franca yaml binary csv graphql ddsidl tests deploy


# Additional targets that shall be built by travis, but where it is not mandatory
Expand Down Expand Up @@ -36,6 +36,9 @@ yaml:
csv:
${TOOLSDIR}/vspec2csv.py -I ./spec ./spec/VehicleSignalSpecification.vspec vss_rel_$$(cat VERSION).csv

ddsidl:
${TOOLSDIR}/vspec2ddsidl.py -I ./spec ./spec/VehicleSignalSpecification.vspec vss_rel_$$(cat VERSION).idl

tests:
PYTHONPATH=${TOOLSDIR} pytest

Expand Down