From 075197f3c2eb7f375d9daee0d6b7f2eae2432074 Mon Sep 17 00:00:00 2001 From: Tadao Tanikawa Date: Tue, 15 Dec 2020 20:38:01 +0000 Subject: [PATCH] Fix build of os-rpclibrary-tool-native Fix missing dependency and double execution of bison. Signed-off-by: Tadao Tanikawa Change-Id: I3d8d3ec5de4eceaaaf520bf24c3718c73acaaa1f --- service/other/rpc_library/tool/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 -- 2.16.6