blob: fad9e82bea5e63ac699da2a72328029590015f12 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
bin:=$(notdir $(shell pwd))
src:=$(wildcard *.c)
obj:=$(src:.c=.o)
obj+=\
toolbox/buffer.o \
toolbox/io_muxer.o
obj:=$(filter-out encode.o,$(obj))
libs:=\
egl \
gbm \
glesv2 \
libdrm \
libva \
libva-drm
res:=\
vertex.glsl \
luma.glsl \
chroma.glsl
#CFLAGS+=-DUSE_EGL_MESA_PLATFORM_SURFACELESS
CFLAGS+=$(shell pkg-config --cflags $(libs))
LDFLAGS+=$(shell pkg-config --libs $(libs))
comma:=,
LDFLAGS+= \
-Wl,--format=binary \
$(patsubst %,-Wl$(comma)%,$(res)) \
-Wl,--format=default
all: $(bin)
$(bin): $(obj)
$(CC) $^ $(LDFLAGS) -o $@
%.o: %.c *.h $(res)
$(CC) -c $< $(CFLAGS) -o $@
clean:
-rm $(bin) $(obj)
.PHONY: all clean
|