27 find . -depth -mindepth 2 -maxdepth 2 -name Makefile -printf %h\\n | xargs -i make -C{} $@ |
27 find . -depth -mindepth 2 -maxdepth 2 -name Makefile -printf %h\\n | xargs -i make -C{} $@ |
28 |
28 |
29 CXXFLAGS += -I. |
29 CXXFLAGS += -I. |
30 |
30 |
31 LIBS = absyntax/absyntax.o absyntax/visitor.o |
31 LIBS = absyntax/absyntax.o absyntax/visitor.o |
32 LIBS += stage1_2/stage1_2.o stage1_2/iec.y.o stage1_2/iec.flex.o search_utils/search_utils.o |
32 LIBS += stage1_2/stage1_2.o stage1_2/iec.y.o stage1_2/iec.flex.o |
|
33 |
|
34 LIBS += absyntax_utils/absyntax_utils.o |
|
35 LIBS += absyntax_utils/search_expression_type.o |
|
36 LIBS += absyntax_utils/decompose_var_instance_name.o |
|
37 LIBS += absyntax_utils/function_call_iterator.o |
|
38 LIBS += absyntax_utils/function_call_param_iterator.o |
|
39 LIBS += absyntax_utils/function_param_iterator.o |
|
40 LIBS += absyntax_utils/search_base_type.o |
|
41 LIBS += absyntax_utils/search_constant_type.o |
|
42 LIBS += absyntax_utils/search_fb_instance_decl.o |
|
43 LIBS += absyntax_utils/search_fb_typedecl.o |
|
44 LIBS += absyntax_utils/search_varfb_instance_type.o |
|
45 LIBS += absyntax_utils/search_var_instance_decl.o |
|
46 LIBS += absyntax_utils/spec_init_separator.o |
|
47 LIBS += absyntax_utils/type_initial_value.o |
|
48 LIBS += absyntax_utils/get_function_type.o |
|
49 |
|
50 |
33 |
51 |
34 iec2c: main.o stage4/generate_c/generate_c.o stage4/stage4.o $(LIBS) |
52 iec2c: main.o stage4/generate_c/generate_c.o stage4/stage4.o $(LIBS) |
35 $(CXX) -o iec2c main.o stage4/stage4.o stage4/generate_c/generate_c.o $(LIBS) |
53 $(CXX) -o iec2c main.o stage4/stage4.o stage4/generate_c/generate_c.o $(LIBS) |
36 |
54 |
37 |
55 |