blob: 90f6f47273025678efd62b095050a987260316c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
TOP = ../../../..
include $(TOP)/configs/current
LIBNAME = radeonsi
LIBRARY_INCLUDES = \
-I$(TOP)/include \
-I$(TOP)/src/gallium/drivers/radeon/
# get C_SOURCES
include Makefile.sources
LIBRADEON = $(TOP)/src/gallium/drivers/radeon/libradeon.a
EXTRA_OBJECTS = \
$(LIBRADEON)
CFLAGS+=$(RADEON_CFLAGS)
include ../../Makefile.template
# FIXME: Remove when this driver is converted to automake.
all: default
|