intel: Remove DRI1 junk from blit glBitmap.
[mesa.git] / src / mesa / drivers / fbdev / Makefile
1 # src/mesa/drivers/fbdev/Makefile for libGL.so
2
3 TOP = ../../../..
4
5 include $(TOP)/configs/current
6
7
8 SOURCES = glfbdev.c
9
10 OBJECTS = $(SOURCES:.c=.o)
11
12 INCLUDE_DIRS = \
13 -I$(TOP)/include \
14 -I$(TOP)/src/mesa \
15 -I$(TOP)/src/mesa/main
16
17 CORE_MESA = $(TOP)/src/mesa/libmesa.a $(TOP)/src/mesa/libglapi.a
18
19
20 .c.o:
21 $(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@
22
23
24 default: $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME)
25
26
27 $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME): $(CORE_MESA) $(OBJECTS)
28 @ $(MKLIB) -o $(GL_LIB) -linker '$(CC)' -ldflags '$(LDFLAGS)' \
29 -major $(MESA_MAJOR) -minor $(MESA_MINOR) -patch $(MESA_TINY) \
30 -install $(TOP)/$(LIB_DIR) $(MKLIB_OPTIONS) \
31 $(CORE_MESA) $(OBJECTS) $(GL_LIB_DEPS)
32
33
34 clean:
35 -rm -f $(OBJECTS)