-
Notifications
You must be signed in to change notification settings - Fork 80
/
Makefile
52 lines (39 loc) · 1.27 KB
/
Makefile
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
46
47
48
49
50
51
52
TARGET = libvdpau_sunxi.so.1
SRC = device.c presentation_queue.c surface_output.c surface_video.c \
surface_bitmap.c video_mixer.c decoder.c handles.c \
h264.c mpeg12.c mpeg4.c rgba.c tiled_yuv.S h265.c sunxi_disp.c \
sunxi_disp2.c sunxi_disp1_5.c rgba_g2d.c rgba_pixman.c
CFLAGS ?= -Wall -O3
LDFLAGS ?=
LIBS = -lrt -lm -lX11 -lpthread -lcedrus
CC ?= gcc
CFLAGS += $(shell pkg-config --cflags pixman-1)
LIBS += $(shell pkg-config --libs pixman-1)
DEP_CFLAGS = -MD -MP -MQ $@
LIB_CFLAGS = -fpic -fvisibility=hidden
LIB_LDFLAGS = -shared -Wl,-soname,$(TARGET)
OBJ = $(addsuffix .o,$(basename $(SRC)))
DEP = $(addsuffix .d,$(basename $(SRC)))
MODULEDIR = $(shell pkg-config --variable=moduledir vdpau)
ifeq ($(MODULEDIR),)
MODULEDIR=/usr/lib/vdpau
endif
.PHONY: clean all install uninstall
all: $(TARGET)
$(TARGET): $(OBJ)
$(CC) $(LIB_LDFLAGS) $(LDFLAGS) $(OBJ) $(LIBS) -o $@
clean:
rm -f $(OBJ)
rm -f $(DEP)
rm -f $(TARGET)
install: $(TARGET)
install -D $(TARGET) $(DESTDIR)$(MODULEDIR)/$(TARGET)
ln -sf $(TARGET) $(DESTDIR)$(MODULEDIR)/$(basename $(TARGET))
uninstall:
rm -f $(DESTDIR)$(MODULEDIR)/$(basename $(TARGET))
rm -f $(DESTDIR)$(MODULEDIR)/$(TARGET)
%.o: %.c
$(CC) $(DEP_CFLAGS) $(LIB_CFLAGS) $(CFLAGS) -c $< -o $@
%.o: %.S
$(CC) -c $< -o $@
include $(wildcard $(DEP))