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