glsl2: Fix dependencies. (at least partially)
[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_expression_flattening.cpp \
37 ir_function_can_inline.cpp \
38 ir_function.cpp \
39 ir_function_inlining.cpp \
40 ir_hierarchical_visitor.cpp \
41 ir_hv_accept.cpp \
42 ir_if_simplification.cpp \
43 ir_print_visitor.cpp \
44 ir_reader.cpp \
45 ir_swizzle_swizzle.cpp \
46 ir_validate.cpp \
47 ir_variable.cpp \
48 ir_vec_index_to_swizzle.cpp \
49 linker.cpp \
50 s_expression.cpp
51
52 LIBS = \
53 $(TOP)/src/glsl/libglsl.a \
54 $(shell pkg-config --libs talloc)
55
56 APPS = glsl_compiler
57 GLSL2_C_SOURCES = \
58 ../mesa/shader/hash_table.c \
59 ../mesa/shader/symbol_table.c
60 GLSL2_CXX_SOURCES = \
61 main.cpp
62
63 GLSL2_OBJECTS = \
64 $(GLSL2_C_SOURCES:.c=.o) \
65 $(GLSL2_CXX_SOURCES:.cpp=.o)
66
67 ### Basic defines ###
68
69 OBJECTS = \
70 $(C_SOURCES:.c=.o) \
71 $(CXX_SOURCES:.cpp=.o)
72
73 INCLUDES = \
74 -I. \
75 -I../mesa \
76 -I../mapi \
77 -I../mesa/shader \
78 $(LIBRARY_INCLUDES)
79
80 ALL_SOURCES = \
81 $(C_SOURCES) \
82 $(CXX_SOURCES) \
83 $(GLSL2_CXX_SOURCES) \
84 $(GLSL2_C_SOURCES)
85
86 ##### TARGETS #####
87
88 default: depend lib$(LIBNAME).a $(APPS)
89
90 lib$(LIBNAME).a: $(OBJECTS) Makefile $(TOP)/src/glsl/Makefile.template
91 $(MKLIB) -cplusplus -o $(LIBNAME) -static $(OBJECTS)
92
93 depend: $(ALL_SOURCES) Makefile
94 rm -f depend
95 touch depend
96 $(MKDEP) $(MKDEP_OPTIONS) $(INCLUDES) $(ALL_SOURCES) 2> /dev/null
97
98 # Remove .o and backup files
99 clean:
100 rm -f $(OBJECTS) lib$(LIBNAME).a depend depend.bak
101 -rm -f $(APPS)
102
103 # Dummy target
104 install:
105 @echo -n ""
106
107
108 ##### RULES #####
109
110 glsl_compiler: $(GLSL2_OBJECTS) libglsl.a
111 $(APP_CXX) $(INCLUDES) $(CFLAGS) $(LDFLAGS) $(GLSL2_OBJECTS) $(LIBS) -o $@
112
113 .cpp.o:
114 $(CXX) -c $(INCLUDES) $(CXXFLAGS) $(LIBRARY_DEFINES) $< -o $@
115
116 .c.o:
117 $(CC) -c $(INCLUDES) $(CFLAGS) $(LIBRARY_DEFINES) $< -o $@
118
119 glsl_lexer.cpp: glsl_lexer.lpp
120 flex --never-interactive --outfile="$@" $<
121
122 glsl_parser.cpp: glsl_parser.ypp
123 bison -v -o "$@" --defines=glsl_parser.h $<
124
125 glcpp/glcpp-lex.c: glcpp/glcpp-lex.l
126 flex --never-interactive --outfile="$@" $<
127
128 glcpp/glcpp-parse.c: glcpp/glcpp-parse.y
129 bison -v -o "$@" --defines=glcpp/glcpp-parse.h $<
130
131 builtin_function.cpp: builtins/*/*
132 ./builtins/tools/generate_builtins.pl > builtin_function.cpp
133
134 -include depend