summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/egl/Makefile
blob: d266ae2d6281c3e84bf5d5cdf0a9f98786aab284 (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     = libegldrm.a
CFILES     = $(wildcard ./*.c)
OBJECTS    = $(patsubst ./%.c,./%.o,$(CFILES))
GALLIUMDIR = ../..
TOP        = ../../../..

include ${TOP}/configs/current

CFLAGS:= -g -Wall -Werror-implicit-function-declaration -fPIC \
          -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 \
          ${LIBDRM_CFLAGS} \
          ${CFLAGS}

#############################################

.PHONY	= all clean

all: ${TARGET}

${TARGET}: ${OBJECTS}
	ar rcs $@ $^

clean:
	rm -rf ${OBJECTS} ${TARGET}