Commit cf5c4633 authored by winckel's avatar winckel

Added a check on gccxml tool.

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4291 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 9405e6ad
...@@ -329,6 +329,13 @@ ASN1DIR=$(ASN1MESSAGESDIR)/ASN1 ...@@ -329,6 +329,13 @@ ASN1DIR=$(ASN1MESSAGESDIR)/ASN1
-include $(OAISIM_PAD_OBJS:.o=.d) -include $(OAISIM_PAD_OBJS:.o=.d)
-include $(ASN1_MSG_OBJS1:.o=.d) -include $(ASN1_MSG_OBJS1:.o=.d)
ifdef ENABLE_ITTI
gccxml_available = $(shell if [ `gccxml --version | grep GCC-XML -c` = "0" ]; then echo "0" ; else echo "1" ; fi )
ifeq ($(gccxml_available), 0)
$(error gccxml is missing, please install)
endif
endif
$(ITTI_MESSAGES_XML): $(ITTI_MESSAGES_FILE) $(ITTI_MESSAGES_XML): $(ITTI_MESSAGES_FILE)
@echo "Generating messages.xml ..." @echo "Generating messages.xml ..."
@gccxml $(L2_incl) $(UTILS_incl) $< -fxml=$@ @gccxml $(L2_incl) $(UTILS_incl) $< -fxml=$@
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment