Makefile revision fb22e801699ef69e40d8e9dfda758be824d86b96
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 --cflags-only-I pixman-1 xorg-server libdrm xproto) \
11	-I$(TOP)/src/gallium/include \
12	-I$(TOP)/src/gallium/auxiliary \
13	-I$(TOP)/include \
14	-I$(TOP)/src/mesa \
15	-I$(TOP)/src/mesa/drivers/dri/common \
16	-I$(TOP)/src/mesa/main
17
18C_SOURCES = $(wildcard ./*.c)
19
20include ../../Makefile.template
21