diff options
-rw-r--r-- | solenv/gbuild/platform/ios.mk | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/solenv/gbuild/platform/ios.mk b/solenv/gbuild/platform/ios.mk index 1039497c1c7e..7621ff051f0b 100644 --- a/solenv/gbuild/platform/ios.mk +++ b/solenv/gbuild/platform/ios.mk @@ -45,6 +45,7 @@ gb_GCCP := $(CC) gb_AR := ar gb_AWK := awk gb_CLASSPATHSEP := : +gb_YACC := bison gb_OSDEFS := \ -D$(OS) \ @@ -134,6 +135,16 @@ define gb_Helper_convert_native $(1) endef +# YaccObject class + +define gb_YaccObject__command +$(call gb_Output_announce,$(2),$(true),YAC,3) +$(call gb_Helper_abbreviate_dirs,\ + mkdir -p $(dir $(3)) && \ + $(gb_YACC) $(T_YACCFLAGS) --defines=$(4) -o $(3) $(1) ) + +endef + # CObject class |