Makefile revision ee40b20e7aff5dc9d11230e991355c338a64da00
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) \ 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