configure: replace pkg-config calls with $(PKG_CONFIG) in the makefiles.
[mesa.git] / src / gallium / state_trackers / vdpau / Makefile
1 TOP = ../../../..
2 include $(TOP)/configs/current
3
4 LIBNAME = vdpautracker
5
6 VDPAU_MAJOR = 1
7 VDPAU_MINOR = 0
8 LIBRARY_DEFINES = -DVER_MAJOR=$(VDPAU_MAJOR) -DVER_MINOR=$(VDPAU_MINOR) $(STATE_TRACKER_DEFINES)
9
10 LIBRARY_INCLUDES = \
11 $(shell $(PKG_CONFIG) --cflags-only-I vdpau) \
12 -I$(TOP)/src/gallium/winsys/g3dvl
13
14 C_SOURCES = htab.c \
15 ftab.c \
16 device.c \
17 query.c \
18 surface.c \
19 decode.c \
20 presentation.c \
21 bitmap.c \
22 output.c \
23 preemption.c \
24 mixer.c
25
26
27 include ../../Makefile.template
28