blob: a00ea3e2a4e4661c7c7982c144d0369217e7d4cb (
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
25
26
27
28
29
|
TARGET = libxorgtracker.a
CFILES = $(wildcard ./*.c)
OBJECTS = $(patsubst ./%.c,./%.o,$(CFILES))
GALLIUMDIR = ../..
TOP = ../../../..
include $(TOP)/configs/current
CFLAGS = -DHAVE_CONFIG_H \
-g -Wall -Wimplicit-function-declaration -fPIC \
$(shell pkg-config --cflags pixman-1 xorg-server libdrm xproto) \
-I$(GALLIUMDIR)/include \
-I$(GALLIUMDIR)/auxiliary \
-I$(TOP)/src/mesa/drivers/dri/common \
-I$(TOP)/src/mesa \
-I$(TOP)/include \
-I$(TOP)/src/egl/main
#############################################
.PHONY = all clean
all: $(TARGET)
$(TARGET): $(OBJECTS)
ar rcs $(TARGET) $(OBJECTS)
clean:
rm -rf $(OBJECTS) $(TARGET)
|