glsl2: Add a pass to convert exp and log to exp2 and log2.
[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 hir_field_selection.cpp \
32 ir_algebraic.cpp \
33 ir_basic_block.cpp \
34 ir_clone.cpp \
35 ir_constant_expression.cpp \
36 ir_constant_folding.cpp \
37 ir_constant_variable.cpp \
38 ir_copy_propagation.cpp \
39 ir.cpp \
40 ir_dead_code.cpp \
41 ir_dead_code_local.cpp \
42 ir_dead_functions.cpp \
43 ir_div_to_mul_rcp.cpp \
44 ir_explog_to_explog2.cpp \
45 ir_expression_flattening.cpp \
46 ir_function_can_inline.cpp \
47 ir_function.cpp \
48 ir_function_inlining.cpp \
49 ir_hierarchical_visitor.cpp \
50 ir_hv_accept.cpp \
51 ir_if_return.cpp \
52 ir_if_simplification.cpp \
53 ir_if_to_cond_assign.cpp \
54 ir_import_prototypes.cpp \
55 ir_mat_op_to_vec.cpp \
56 ir_mod_to_fract.cpp \
57 ir_print_visitor.cpp \
58 ir_reader.cpp \
59 ir_structure_splitting.cpp \
60 ir_swizzle_swizzle.cpp \
61 ir_tree_grafting.cpp \
62 ir_validate.cpp \
63 ir_variable.cpp \
64 ir_variable_refcount.cpp \
65 ir_vec_index_to_cond_assign.cpp \
66 ir_vec_index_to_swizzle.cpp \
67 linker.cpp \
68 link_functions.cpp \
69 s_expression.cpp
70
71 LIBS = \
72 $(TOP)/src/glsl/libglsl.a \
73 $(shell pkg-config --libs talloc)
74
75 APPS = glsl_compiler glcpp/glcpp
76
77 GLSL2_C_SOURCES = \
78 ../mesa/program/hash_table.c \
79 ../mesa/program/symbol_table.c
80 GLSL2_CXX_SOURCES = \
81 main.cpp
82
83 GLSL2_OBJECTS = \
84 $(GLSL2_C_SOURCES:.c=.o) \
85 $(GLSL2_CXX_SOURCES:.cpp=.o)
86
87 ### Basic defines ###
88
89 DEFINES += \
90 $(LIBRARY_DEFINES) \
91 $(API_DEFINES)
92
93 GLCPP_OBJECTS = \
94 $(GLCPP_SOURCES:.c=.o) \
95 ../mesa/program/hash_table.o
96
97 OBJECTS = \
98 $(C_SOURCES:.c=.o) \
99 $(CXX_SOURCES:.cpp=.o)
100
101 INCLUDES = \
102 -I. \
103 -I../mesa \
104 -I../mapi \
105 -I../../include \
106 $(LIBRARY_INCLUDES)
107
108 ALL_SOURCES = \
109 $(C_SOURCES) \
110 $(CXX_SOURCES) \
111 $(GLSL2_CXX_SOURCES) \
112 $(GLSL2_C_SOURCES)
113
114 ##### TARGETS #####
115
116 default: depend lib$(LIBNAME).a $(APPS)
117
118 lib$(LIBNAME).a: $(OBJECTS) Makefile $(TOP)/src/glsl/Makefile.template
119 $(MKLIB) -cplusplus -o $(LIBNAME) -static $(OBJECTS)
120
121 depend: $(ALL_SOURCES) Makefile
122 rm -f depend
123 touch depend
124 $(MKDEP) $(MKDEP_OPTIONS) $(INCLUDES) $(ALL_SOURCES) 2> /dev/null
125
126 # Remove .o and backup files
127 clean:
128 rm -f $(OBJECTS) lib$(LIBNAME).a depend depend.bak
129 -rm -f $(APPS)
130
131 # Dummy target
132 install:
133 @echo -n ""
134
135
136 ##### RULES #####
137
138 glsl_compiler: $(GLSL2_OBJECTS) libglsl.a
139 $(APP_CXX) $(INCLUDES) $(CFLAGS) $(LDFLAGS) $(GLSL2_OBJECTS) $(LIBS) -o $@
140
141 glcpp/glcpp: $(GLCPP_OBJECTS) libglsl.a
142 $(APP_CC) $(INCLUDES) $(CFLAGS) $(LDFLAGS) $(GLCPP_OBJECTS) $(LIBS) -o $@
143
144 .cpp.o:
145 $(CXX) -c $(INCLUDES) $(CXXFLAGS) $(DEFINES) $< -o $@
146
147 .c.o:
148 $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
149
150 glsl_lexer.cpp: glsl_lexer.lpp
151 flex --never-interactive --outfile="$@" $<
152
153 glsl_parser.cpp: glsl_parser.ypp
154 bison -v -o "$@" --defines=glsl_parser.h $<
155
156 glcpp/glcpp-lex.c: glcpp/glcpp-lex.l
157 flex --never-interactive --outfile="$@" $<
158
159 glcpp/glcpp-parse.c: glcpp/glcpp-parse.y
160 bison -v -o "$@" --defines=glcpp/glcpp-parse.h $<
161
162 builtin_function.cpp: builtins/*/*
163 ./builtins/tools/generate_builtins.pl > builtin_function.cpp
164
165 -include depend