From: Tadao Tanikawa Date: Tue, 15 Dec 2020 20:38:01 +0000 (+0000) Subject: Fix build of os-rpclibrary-tool-native X-Git-Tag: 10.91.0~5 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=075197f3c2eb7f375d9daee0d6b7f2eae2432074;hp=9e6613f8702df881526023403d33e342e6b428b6;p=staging%2Fbasesystem.git Fix build of os-rpclibrary-tool-native Fix missing dependency and double execution of bison. Signed-off-by: Tadao Tanikawa Change-Id: I3d8d3ec5de4eceaaaf520bf24c3718c73acaaa1f --- diff --git a/service/other/rpc_library/tool/Makefile b/service/other/rpc_library/tool/Makefile index 64bc6e4..2ba9137 100755 --- a/service/other/rpc_library/tool/Makefile +++ b/service/other/rpc_library/tool/Makefile @@ -36,10 +36,12 @@ apidef.tab.o: apidef.tab.h apidef.tab.c lex.yy.o: lex.yy.c $(CC) $(CPPFLAGS) $(CFLAGS) -c $^ -apidef.o: apidef.cc +apidef.o: apidef.cc apidef.tab.h $(CXX) $(CPPFLAGS) $(CFLAGS) -c $^ -apidef.tab.h apidef.tab.c: apidef.y +apidef.tab.c: apidef.tab.h + +apidef.tab.h: apidef.y $(YACC) $(YFLAGS) $< lex.yy.c: apidef.l apidef.tab.h