Skip to content

Commit

Permalink
added idl file generation target in the make file (#455)
Browse files Browse the repository at this point in the history
  • Loading branch information
zam1kor authored Jun 14, 2022
1 parent eaa69c1 commit b289cdf
Showing 1 changed file with 6 additions and 3 deletions.
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

0 comments on commit b289cdf

Please sign in to comment.