Last change
on this file since 88839 was 75443, checked in by vboxsync, 6 years ago |
Exported Mesa related code to OSE.
|
-
Property svn:eol-style
set to
LF
|
File size:
505 bytes
|
Line | |
---|
1 |
|
---|
2 | default: full
|
---|
3 |
|
---|
4 | all: full subset
|
---|
5 |
|
---|
6 | %.tag: %.doxy
|
---|
7 | doxygen $<
|
---|
8 |
|
---|
9 | FULL = \
|
---|
10 | main.doxy \
|
---|
11 | math.doxy \
|
---|
12 | vbo.doxy \
|
---|
13 | glapi.doxy \
|
---|
14 | glsl.doxy \
|
---|
15 | swrast.doxy \
|
---|
16 | swrast_setup.doxy \
|
---|
17 | tnl.doxy \
|
---|
18 | tnl_dd.doxy \
|
---|
19 | gbm.doxy \
|
---|
20 | i965.doxy \
|
---|
21 | nir.doxy
|
---|
22 |
|
---|
23 | full: $(FULL:.doxy=.tag)
|
---|
24 | $(foreach FILE,$(FULL),doxygen $(FILE);)
|
---|
25 |
|
---|
26 | SUBSET = \
|
---|
27 | main.doxy \
|
---|
28 | math.doxy \
|
---|
29 | gallium.doxy
|
---|
30 |
|
---|
31 | subset: $(SUBSET:.doxy=.tag)
|
---|
32 | $(foreach FILE,$(SUBSET),doxygen $(FILE);)
|
---|
33 |
|
---|
34 | clean:
|
---|
35 | -rm -rf $(FULL:.doxy=) $(SUBSET:.doxy=)
|
---|
36 | -rm -rf *.tag
|
---|
37 | -rm -rf *.db
|
---|
Note:
See
TracBrowser
for help on using the repository browser.