move a beos-ism down into drivers/beos/Makefile
[mesa.git] / src / mesa / Makefile
1 # src/mesa/Makefile
2
3 TOP = ../..
4 include $(TOP)/configs/current
5
6 include sources
7
8
9 .SUFFIXES : .cpp
10
11 .c.o:
12 $(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@
13
14 .cpp.o:
15 $(CXX) -c $(INCLUDE_DIRS) $(CXXFLAGS) $< -o $@
16
17 .S.o:
18 $(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@
19
20
21
22 # Default: build dependencies, then mesa subdirs, then convenience
23 # libs (.a) and finally the device drivers:
24 default: depend subdirs libmesa.a libglapi.a driver_subdirs
25
26
27 # this doesn't work yet but is probably the way to go in the future
28 new_install:
29 (cd drivers && $(MAKE) install)
30
31
32 # XXX replace this with new_install above someday
33 install: default
34 @for driver in $(DRIVER_DIRS) ; do \
35 case "$$driver" in \
36 osmesa) if [ "$(DRIVER_DIRS)" = osmesa ]; then \
37 $(MAKE) install-headers install-osmesa || exit 1 ; \
38 else \
39 $(MAKE) install-osmesa || exit 1 ; \
40 fi ;; \
41 dri) $(MAKE) install-libgl install-dri || exit 1 ;; \
42 *) $(MAKE) install-libgl || exit 1 ;; \
43 esac ; \
44 done
45
46
47
48 ######################################################################
49 # Helper libraries used by many drivers:
50
51 # Make archive of core mesa object files
52 libmesa.a: $(SOLO_OBJECTS)
53 @ $(TOP)/bin/mklib -o mesa -static $(SOLO_OBJECTS);
54
55 # Make archive of gl* API dispatcher functions only
56 libglapi.a: $(GLAPI_OBJECTS)
57 @ $(TOP)/bin/mklib -o glapi -static $(GLAPI_OBJECTS)
58
59
60 ######################################################################
61 # Device drivers
62 driver_subdirs:
63 (cd drivers && $(MAKE))
64
65
66 ######################################################################
67 # Assembly subdirs
68 subdirs:
69 @ if echo "$(ASM_FLAGS)" | grep -q USE_X86_ASM ; then \
70 (cd x86 && $(MAKE)) || exit 1 ; \
71 fi
72 @ if echo "$(ASM_FLAGS)" | grep -q USE_X86_64_ASM ; then \
73 (cd x86 && $(MAKE)) || exit 1 ; \
74 (cd x86-64 && $(MAKE)) || exit 1 ; \
75 fi
76
77
78 ######################################################################
79 # Dependency generation
80
81 depend: $(ALL_SOURCES)
82 @ echo "running $(MKDEP)"
83 @ touch depend
84 @$(MKDEP) $(MKDEP_OPTIONS) $(DEFINES) $(INCLUDE_DIRS) $(ALL_SOURCES) \
85 > /dev/null 2>/dev/null
86
87
88 ######################################################################
89 # Installation rules
90
91 pcedit = sed \
92 -e 's,@INSTALL_DIR@,$(INSTALL_DIR),' \
93 -e 's,@LIB_DIR@,$(LIB_DIR),' \
94 -e 's,@VERSION@,$(MESA_MAJOR).$(MESA_MINOR).$(MESA_TINY),'
95
96 gl.pc: gl.pc.in
97 $(pcedit) $< > $@
98
99 install-headers:
100 $(INSTALL) -d $(DESTDIR)$(INSTALL_DIR)/include/GL
101 $(INSTALL) -m 644 $(TOP)/include/GL/*.h \
102 $(DESTDIR)$(INSTALL_DIR)/include/GL
103
104 install-libgl: default gl.pc install-headers
105 $(INSTALL) -d $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)
106 $(INSTALL) -d $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)/pkgconfig
107 $(INSTALL) $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME)* \
108 $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)
109 $(INSTALL) -m 644 gl.pc $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)/pkgconfig
110
111 install-osmesa: default
112 $(INSTALL) -d $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)
113 $(INSTALL) $(TOP)/$(LIB_DIR)/$(OSMESA_LIB_NAME)* \
114 $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)
115
116 install-dri:
117 cd drivers/dri && $(MAKE) install
118
119
120
121 # Emacs tags
122 tags:
123 etags `find . -name \*.[ch]` $(TOP)/include/GL/*.h
124
125
126 clean:
127 -rm -f */*.o
128 -rm -f */*/*.o
129 -rm -f depend depend.bak libmesa.a libglapi.a
130 -rm -f drivers/*/*.o
131 -@cd drivers/dri && $(MAKE) clean
132 -@cd drivers/xorg && $(MAKE) clean
133 -@cd drivers/x11 && $(MAKE) clean
134 -@cd drivers/osmesa && $(MAKE) clean
135 -@cd x86 && $(MAKE) clean
136 -@cd x86-64 && $(MAKE) clean
137
138
139 -include depend