Makefile revision 0d0a6e9096f98cd6142d6a883e9a2884ccea0adb
1TOP = ../../../..
2include $(TOP)/configs/current
3
4LIBNAME = xorgtracker
5
6LIBRARY_INCLUDES = \
7	-DHAVE_CONFIG_H \
8	$(shell pkg-config xextproto --atleast-version=7.0.99.1 \
9				&& echo "-DHAVE_XEXTPROTO_71") \
10	$(shell pkg-config libkms --atleast-version=1.0 \
11				&& echo "-DHAVE_LIBKMS") \
12	$(shell pkg-config libkms --silence-errors --cflags-only-I) \
13	$(shell pkg-config --cflags-only-I pixman-1 xorg-server libdrm xproto dri2proto) \
14	-I$(TOP)/src/gallium/include \
15	-I$(TOP)/src/gallium/auxiliary \
16	-I$(TOP)/include \
17	-I$(TOP)/src/mesa \
18	-I$(TOP)/src/mesa/drivers/dri/common \
19	-I$(TOP)/src/mesa/main
20
21C_SOURCES = $(wildcard ./*.c)
22
23include ../../Makefile.template
24