glsl2: Add pass for supporting variable vector indexing in rvalues.
[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 C_SOURCES = \
10 glcpp/glcpp.c \
11 glcpp/glcpp-lex.c \
12 glcpp/glcpp-parse.c \
13 glcpp/pp.c \
14 glcpp/xtalloc.c
15
16 CXX_SOURCES = \
17 ast_expr.cpp \
18 ast_function.cpp \
19 ast_to_hir.cpp \
20 ast_type.cpp \
21 builtin_function.cpp \
22 glsl_lexer.cpp \
23 glsl_parser.cpp \
24 glsl_parser_extras.cpp \
25 glsl_types.cpp \
26 hir_field_selection.cpp \
27 ir_basic_block.cpp \
28 ir_clone.cpp \
29 ir_constant_expression.cpp \
30 ir_constant_folding.cpp \
31 ir_constant_variable.cpp \
32 ir_copy_propagation.cpp \
33 ir.cpp \
34 ir_dead_code.cpp \
35 ir_dead_code_local.cpp \
36 ir_div_to_mul_rcp.cpp \
37 ir_expression_flattening.cpp \
38 ir_function_can_inline.cpp \
39 ir_function.cpp \
40 ir_function_inlining.cpp \
41 ir_hierarchical_visitor.cpp \
42 ir_hv_accept.cpp \
43 ir_if_simplification.cpp \
44 ir_mod_to_fract.cpp \
45 ir_print_visitor.cpp \
46 ir_reader.cpp \
47 ir_swizzle_swizzle.cpp \
48 ir_validate.cpp \
49 ir_variable.cpp \
50 ir_vec_index_to_cond_assign.cpp \
51 ir_vec_index_to_swizzle.cpp \
52 linker.cpp \
53 s_expression.cpp
54
55 LIBS = \
56 $(TOP)/src/glsl/libglsl.a \
57 $(shell pkg-config --libs talloc)
58
59 APPS = glsl_compiler
60 GLSL2_C_SOURCES = \
61 ../mesa/shader/hash_table.c \
62 ../mesa/shader/symbol_table.c
63 GLSL2_CXX_SOURCES = \
64 main.cpp
65
66 GLSL2_OBJECTS = \
67 $(GLSL2_C_SOURCES:.c=.o) \
68 $(GLSL2_CXX_SOURCES:.cpp=.o)
69
70 ### Basic defines ###
71
72 OBJECTS = \
73 $(C_SOURCES:.c=.o) \
74 $(CXX_SOURCES:.cpp=.o)
75
76 INCLUDES = \
77 -I. \
78 -I../mesa \
79 -I../mapi \
80 -I../mesa/shader \
81 $(LIBRARY_INCLUDES)
82
83 ALL_SOURCES = \
84 $(C_SOURCES) \
85 $(CXX_SOURCES) \
86 $(GLSL2_CXX_SOURCES) \
87 $(GLSL2_C_SOURCES)
88
89 ##### TARGETS #####
90
91 default: depend lib$(LIBNAME).a $(APPS)
92
93 lib$(LIBNAME).a: $(OBJECTS) Makefile $(TOP)/src/glsl/Makefile.template
94 $(MKLIB) -cplusplus -o $(LIBNAME) -static $(OBJECTS)
95
96 depend: $(ALL_SOURCES) Makefile
97 rm -f depend
98 touch depend
99 $(MKDEP) $(MKDEP_OPTIONS) $(INCLUDES) $(ALL_SOURCES) 2> /dev/null
100
101 # Remove .o and backup files
102 clean:
103 rm -f $(OBJECTS) lib$(LIBNAME).a depend depend.bak
104 -rm -f $(APPS)
105
106 # Dummy target
107 install:
108 @echo -n ""
109
110
111 ##### RULES #####
112
113 glsl_compiler: $(GLSL2_OBJECTS) libglsl.a
114 $(APP_CXX) $(INCLUDES) $(CFLAGS) $(LDFLAGS) $(GLSL2_OBJECTS) $(LIBS) -o $@
115
116 .cpp.o:
117 $(CXX) -c $(INCLUDES) $(CXXFLAGS) $(LIBRARY_DEFINES) $< -o $@
118
119 .c.o:
120 $(CC) -c $(INCLUDES) $(CFLAGS) $(LIBRARY_DEFINES) $< -o $@
121
122 glsl_lexer.cpp: glsl_lexer.lpp
123 flex --never-interactive --outfile="$@" $<
124
125 glsl_parser.cpp: glsl_parser.ypp
126 bison -v -o "$@" --defines=glsl_parser.h $<
127
128 glcpp/glcpp-lex.c: glcpp/glcpp-lex.l
129 flex --never-interactive --outfile="$@" $<
130
131 glcpp/glcpp-parse.c: glcpp/glcpp-parse.y
132 bison -v -o "$@" --defines=glcpp/glcpp-parse.h $<
133
134 builtin_function.cpp: builtins/*/*
135 ./builtins/tools/generate_builtins.pl > builtin_function.cpp
136
137 -include depend