summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xservice/other/rpc_library/tool/Makefile6
1 files 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