1TOP = ../../../..
2include $(TOP)/configs/current
3
4LIBNAME = svga
5
6# get C_SOURCES
7include Makefile.sources
8
9LIBRARY_INCLUDES = \
10	-I$(TOP)/src/gallium/drivers/svga/include
11
12# With linux-debug we get a lots of warnings, filter out the bad flags.
13CFLAGS := $(filter-out -pedantic, $(filter-out -ansi, $(CFLAGS)))
14
15LIBRARY_DEFINES = \
16	-std=gnu99 -fvisibility=hidden \
17	-DHAVE_STDINT_H -DHAVE_SYS_TYPES_H
18
19include ../../Makefile.template
20