gallivm/llvmpipe: move lp_bld_alpha.c to llvmpipe/ directory
[mesa.git] / src / gallium / drivers / llvmpipe / Makefile
1 TOP = ../../../..
2 include $(TOP)/configs/current
3
4 LIBNAME = llvmpipe
5
6 DEFINES += -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS
7
8 C_SOURCES = \
9 lp_bld_alpha.c \
10 lp_bld_depth.c \
11 lp_bld_interp.c \
12 lp_clear.c \
13 lp_context.c \
14 lp_draw_arrays.c \
15 lp_fence.c \
16 lp_flush.c \
17 lp_jit.c \
18 lp_perf.c \
19 lp_query.c \
20 lp_rast.c \
21 lp_rast_tri.c \
22 lp_scene.c \
23 lp_scene_queue.c \
24 lp_screen.c \
25 lp_setup.c \
26 lp_setup_line.c \
27 lp_setup_point.c \
28 lp_setup_tri.c \
29 lp_setup_vbuf.c \
30 lp_state_blend.c \
31 lp_state_clip.c \
32 lp_state_derived.c \
33 lp_state_fs.c \
34 lp_state_rasterizer.c \
35 lp_state_sampler.c \
36 lp_state_surface.c \
37 lp_state_vertex.c \
38 lp_state_vs.c \
39 lp_surface.c \
40 lp_tex_sample_llvm.c \
41 lp_texture.c \
42 lp_tile_image.c \
43 lp_tile_soa.c
44
45 CPP_SOURCES = \
46
47 PROGS := \
48 lp_test_blend \
49 lp_test_conv \
50 lp_test_printf
51
52
53 include ../../Makefile.template
54
55 lp_tile_soa.c: lp_tile_soa.py ../../auxiliary/util/u_format_parse.py ../../auxiliary/util/u_format_pack.py ../../auxiliary/util/u_format.csv
56 python lp_tile_soa.py ../../auxiliary/util/u_format.csv > $@
57
58
59 LIBS += $(GL_LIB_DEPS) -L../../auxiliary/ -lgallium
60
61 $(PROGS): lp_test_main.o
62