eolian: fix eo makefile example of --eo option.
authorJinsolPark <jin_sol.park@samsung.com>
Mon, 30 Nov 2015 10:37:10 +0000 (10:37 +0000)
committerDaniel Kolesa <d.kolesa@osg.samsung.com>
Mon, 30 Nov 2015 10:37:10 +0000 (10:37 +0000)
Summary: eolian: fix eo makefile example of --eo option.

Reviewers: cedric, q66

Reviewed By: q66

Subscribers: jpeg, q66

Differential Revision: https://phab.enlightenment.org/D3389

src/examples/eolian_cxx/Makefile.examples

index 7577932..d3a29a3 100644 (file)
@@ -28,10 +28,10 @@ all: $(OBJS) examples
 codegen:
        $(EOLIAN_CXX) $(EOLIAN_FLAGS) -I./colourable.eo -o colourable.eo.hh
        $(EOLIAN_CXX) $(EOLIAN_FLAGS) -I./colourablesquare.eo -o colourablesquare.eo.hh
-       $(EOLIAN_GEN) --eo --legacy $(EOLIAN_FLAGS) --gc -o colourable.eo.c colourable.eo
-       $(EOLIAN_GEN) --eo --legacy $(EOLIAN_FLAGS) --gc -o colourablesquare.eo.c colourablesquare.eo
-       $(EOLIAN_GEN) --eo $(EOLIAN_FLAGS) --gh -o colourable.eo.h colourable.eo
-       $(EOLIAN_GEN) --eo $(EOLIAN_FLAGS) --gh -o colourablesquare.eo.h colourablesquare.eo
+       $(EOLIAN_GEN) --legacy $(EOLIAN_FLAGS) --gc -o colourable.eo.c colourable.eo
+       $(EOLIAN_GEN) --legacy $(EOLIAN_FLAGS) --gc -o colourablesquare.eo.c colourablesquare.eo
+       $(EOLIAN_GEN) $(EOLIAN_FLAGS) --gh -o colourable.eo.h colourable.eo
+       $(EOLIAN_GEN) $(EOLIAN_FLAGS) --gh -o colourablesquare.eo.h colourablesquare.eo
 
 $(OBJS): codegen
        $(CC) -c colourable.c $(COMMON_FLAGS)