glsl: add pass to lower variable array indexing to conditional assignments
[mesa.git] / src / glsl / Makefile
1 #src/glsl/pp/Makefile
2
3 TOP = ../..
4
5 include $(TOP)/configs/current
6
7 LIBNAME = glsl
8
9 LIBGLCPP_SOURCES = \
10 glcpp/glcpp-lex.c \
11 glcpp/glcpp-parse.c \
12 glcpp/pp.c
13
14 GLCPP_SOURCES = \
15 $(LIBGLCPP_SOURCES) \
16 glcpp/glcpp.c
17
18 C_SOURCES = \
19 $(LIBGLCPP_SOURCES)
20
21 CXX_SOURCES = \
22 ast_expr.cpp \
23 ast_function.cpp \
24 ast_to_hir.cpp \
25 ast_type.cpp \
26 builtin_function.cpp \
27 glsl_lexer.cpp \
28 glsl_parser.cpp \
29 glsl_parser_extras.cpp \
30 glsl_types.cpp \
31 glsl_symbol_table.cpp \
32 hir_field_selection.cpp \
33 ir_algebraic.cpp \
34 ir_basic_block.cpp \
35 ir_clone.cpp \
36 ir_constant_expression.cpp \
37 ir_constant_folding.cpp \
38 ir_constant_propagation.cpp \
39 ir_constant_variable.cpp \
40 ir_copy_propagation.cpp \
41 ir.cpp \
42 ir_dead_code.cpp \
43 ir_dead_code_local.cpp \
44 ir_dead_functions.cpp \
45 ir_div_to_mul_rcp.cpp \
46 ir_explog_to_explog2.cpp \
47 ir_expression_flattening.cpp \
48 ir_function_can_inline.cpp \
49 ir_function.cpp \
50 ir_function_inlining.cpp \
51 ir_hierarchical_visitor.cpp \
52 ir_hv_accept.cpp \
53 ir_if_simplification.cpp \
54 ir_if_to_cond_assign.cpp \
55 ir_import_prototypes.cpp \
56 ir_lower_jumps.cpp \
57 ir_mat_op_to_vec.cpp \
58 ir_mod_to_fract.cpp \
59 ir_noop_swizzle.cpp \
60 ir_print_visitor.cpp \
61 ir_reader.cpp \
62 ir_rvalue_visitor.cpp \
63 ir_set_program_inouts.cpp \
64 ir_structure_splitting.cpp \
65 ir_sub_to_add_neg.cpp \
66 ir_swizzle_swizzle.cpp \
67 ir_tree_grafting.cpp \
68 ir_validate.cpp \
69 ir_variable.cpp \
70 ir_variable_refcount.cpp \
71 ir_vec_index_to_cond_assign.cpp \
72 ir_vec_index_to_swizzle.cpp \
73 linker.cpp \
74 link_functions.cpp \
75 loop_analysis.cpp \
76 loop_controls.cpp \
77 loop_unroll.cpp \
78 lower_noise.cpp \
79 lower_variable_index_to_cond_assign.cpp \
80 opt_redundant_jumps.cpp \
81 s_expression.cpp
82
83 LIBS = \
84 $(TOP)/src/glsl/libglsl.a \
85 $(TALLOC_LIBS)
86
87 APPS = glsl_compiler glcpp/glcpp
88
89 GLSL2_C_SOURCES = \
90 ../mesa/program/hash_table.c \
91 ../mesa/program/symbol_table.c
92 GLSL2_CXX_SOURCES = \
93 main.cpp
94
95 GLSL2_OBJECTS = \
96 $(GLSL2_C_SOURCES:.c=.o) \
97 $(GLSL2_CXX_SOURCES:.cpp=.o)
98
99 ### Basic defines ###
100
101 DEFINES += \
102 $(LIBRARY_DEFINES) \
103 $(API_DEFINES)
104
105 GLCPP_OBJECTS = \
106 $(GLCPP_SOURCES:.c=.o) \
107 ../mesa/program/hash_table.o
108
109 OBJECTS = \
110 $(C_SOURCES:.c=.o) \
111 $(CXX_SOURCES:.cpp=.o)
112
113 INCLUDES = \
114 $(TALLOC_CFLAGS) \
115 -I. \
116 -I../mesa \
117 -I../mapi \
118 -I../../include \
119 $(LIBRARY_INCLUDES)
120
121 ALL_SOURCES = \
122 $(C_SOURCES) \
123 $(CXX_SOURCES) \
124 $(GLSL2_CXX_SOURCES) \
125 $(GLSL2_C_SOURCES)
126
127 ##### TARGETS #####
128
129 default: depend lib$(LIBNAME).a $(APPS)
130
131 lib$(LIBNAME).a: $(OBJECTS) Makefile $(TOP)/src/glsl/Makefile.template
132 $(MKLIB) -cplusplus -o $(LIBNAME) -static $(OBJECTS)
133
134 depend: $(ALL_SOURCES) Makefile
135 rm -f depend
136 touch depend
137 $(MKDEP) $(MKDEP_OPTIONS) $(INCLUDES) $(ALL_SOURCES) 2> /dev/null
138
139 # Remove .o and backup files
140 clean:
141 rm -f $(GLCPP_OBJECTS) $(GLSL2_OBJECTS) $(OBJECTS) lib$(LIBNAME).a depend depend.bak
142 -rm -f $(APPS)
143
144 # Dummy target
145 install:
146 @echo -n ""
147
148
149 ##### RULES #####
150
151 glsl_compiler: $(GLSL2_OBJECTS) libglsl.a
152 $(APP_CXX) $(INCLUDES) $(CFLAGS) $(LDFLAGS) $(GLSL2_OBJECTS) $(LIBS) -o $@
153
154 glcpp/glcpp: $(GLCPP_OBJECTS) libglsl.a
155 $(APP_CC) $(INCLUDES) $(CFLAGS) $(LDFLAGS) $(GLCPP_OBJECTS) $(LIBS) -o $@
156
157 .cpp.o:
158 $(CXX) -c $(INCLUDES) $(CXXFLAGS) $(DEFINES) $< -o $@
159
160 .c.o:
161 $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
162
163 glsl_lexer.cpp: glsl_lexer.lpp
164 flex --nounistd -o$@ $<
165
166 glsl_parser.cpp: glsl_parser.ypp
167 bison -v -o "$@" -p "_mesa_glsl_" --defines=glsl_parser.h $<
168
169 glcpp/glcpp-lex.c: glcpp/glcpp-lex.l
170 flex --nounistd -o$@ $<
171
172 glcpp/glcpp-parse.c: glcpp/glcpp-parse.y
173 bison -v -o "$@" --defines=glcpp/glcpp-parse.h $<
174
175 builtins: builtin_function.cpp builtins/profiles/* builtins/ir/* builtins/tools/generate_builtins.py builtins/tools/texture_builtins.py
176 @echo Bootstrapping the compiler...
177 cp builtins/tools/builtin_function.cpp .
178 make glsl_compiler
179 @echo Regenerating builtin_function.cpp...
180 ./builtins/tools/generate_builtins.py > builtin_function.cpp
181 @echo Rebuilding the real compiler...
182 make glsl_compiler
183
184 -include depend