blob: b8c805b06c4f4301bc54b3bee73bd4986953ccd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
# src/mesa/Makefile
TOP = ../../../..
include $(TOP)/configs/current
GALLIUM = $(TOP)
### Lists of source files, included by Makefiles
VG_SOURCES = \
api_context.c \
api_filters.c \
api_images.c \
api_masks.c \
api_misc.c \
api_paint.c \
api_params.c \
api_path.c \
api_text.c \
api_transform.c \
vgu.c \
vg_context.c \
vg_state.c \
vg_tracker.c \
vg_translate.c \
polygon.c \
bezier.c \
path.c \
paint.c \
arc.c \
image.c \
renderer.c \
stroker.c \
mask.c \
shader.c \
shaders_cache.c
### All the core C sources
ALL_SOURCES = \
$(VG_SOURCES)
### Object files
VG_OBJECTS = \
$(VG_SOURCES:.c=.o)
### Include directories
INCLUDE_DIRS = \
-I$(TOP)/include \
-I$(GALLIUM)/include \
-I$(GALLIUM)/src/gallium/include \
-I$(GALLIUM)/src/gallium/auxiliary
VG_LIB = OpenVG
VG_LIB_NAME = lib$(VG_LIB).so
VG_MAJOR = 1
VG_MINOR = 0
VG_TINY = 0
GALLIUM_LIBS = \
$(GALLIUM)/src/gallium/auxiliary/pipebuffer/libpipebuffer.a \
$(GALLIUM)/src/gallium/auxiliary/sct/libsct.a \
$(GALLIUM)/src/gallium/auxiliary/draw/libdraw.a \
$(GALLIUM)/src/gallium/auxiliary/rtasm/librtasm.a \
$(GALLIUM)/src/gallium/auxiliary/translate/libtranslate.a \
$(GALLIUM)/src/gallium/auxiliary/cso_cache/libcso_cache.a \
$(GALLIUM)/src/gallium/auxiliary/util/libutil.a \
$(GALLIUM)/src/gallium/auxiliary/tgsi/libtgsi.a
.SUFFIXES : .cpp
.c.o:
$(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@
.cpp.o:
$(CXX) -c $(INCLUDE_DIRS) $(CXXFLAGS) $< -o $@
.S.o:
$(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@
default: depend subdirs $(TOP)/$(LIB_DIR)/$(VG_LIB_NAME)
# Make the OpenVG library
$(TOP)/$(LIB_DIR)/$(VG_LIB_NAME): $(VG_OBJECTS) $(GALLIUM_LIBS)
$(TOP)/bin/mklib -o $(VG_LIB) \
-major $(VG_MAJOR) \
-minor $(VG_MINOR) \
-patch $(VG_TINY) \
-install $(TOP)/$(LIB_DIR) \
$(VG_OBJECTS) $(GALLIUM_LIBS) \
-Wl,--whole-archive $(LIBS) -Wl,--no-whole-archive $(SYS_LIBS)
######################################################################
# Generic stuff
depend: $(ALL_SOURCES)
@ echo "running $(MKDEP)"
@ rm -f depend # workaround oops on gutsy?!?
@ touch depend
@ $(MKDEP) $(MKDEP_OPTIONS) $(DEFINES) $(INCLUDE_DIRS) $(ALL_SOURCES) \
> /dev/null 2>/dev/null
subdirs:
install: default
$(INSTALL) -d $(INSTALL_DIR)/include/VG
$(INSTALL) -d $(INSTALL_DIR)/$(LIB_DIR)
$(INSTALL) -m 644 $(TOP)/include/VG/*.h $(INSTALL_DIR)/include/VG
@if [ -e $(TOP)/$(LIB_DIR)/$(VG_LIB_NAME) ]; then \
$(INSTALL) $(TOP)/$(LIB_DIR)/libOpenVG* $(INSTALL_DIR)/$(LIB_DIR); \
fi
# Emacs tags
tags:
etags `find . -name \*.[ch]` $(TOP)/include/VG/*.h
clean:
-rm -f *.o
-rm -f */*.o
-rm -f */*/*.o
-rm -f depend depend.bak
include depend
|