summaryrefslogtreecommitdiff
path: root/vhook/Makefile
blob: 2e699d263ad4a2cb1aaf92c66b82833d0bfdd3c9 (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
46
47
48
49
50
51
52
53
54
55
include ../config.mak

VPATH=$(SRC_PATH)/vhook

CFLAGS=-I$(BUILD_ROOT) -I$(SRC_PATH) -I$(SRC_PATH)/libavutil -I$(SRC_PATH)/libavcodec \
       -I$(SRC_PATH)/libavformat $(VHOOKCFLAGS) -DHAVE_AV_CONFIG_H
LDFLAGS+= -g

ifeq ($(CONFIG_SWSCALER),yes)
CFLAGS := -I$(SRC_PATH)/libswscale $(CFLAGS)
endif

HOOKS=null$(SLIBSUF) fish$(SLIBSUF) ppm$(SLIBSUF) watermark$(SLIBSUF)
ALLHOOKS=$(HOOKS) imlib2$(SLIBSUF) drawtext$(SLIBSUF)

ifeq ($(HAVE_IMLIB2),yes)
    HOOKS += imlib2$(SLIBSUF)
    LIBS_imlib2$(SLIBSUF) = -lImlib2
endif

ifeq ($(HAVE_FREETYPE2),yes)
    HOOKS += drawtext$(SLIBSUF)
    CFLAGS += `freetype-config --cflags`
    LIBS_drawtext$(SLIBSUF) = `freetype-config --libs`
endif

SRCS := $(HOOKS:$(SLIBSUF)=.c)

all: $(HOOKS)

depend dep: $(SRCS)
	$(CC) -MM $(CFLAGS) $^ 1>.depend

install: $(HOOKS)
	install -d "$(shlibdir)/vhook"
	install -m 755 $(HOOKS) "$(shlibdir)/vhook"

uninstall:
	rm -f $(addprefix $(shlibdir)/vhook/,$(ALLHOOKS))
	-rmdir "$(shlibdir)/vhook/"

%$(SLIBSUF): %.o
	$(CC) $(LDFLAGS) -o $@ $(VHOOKSHFLAGS) $< $(VHOOKLIBS) $(LIBS_$@)

clean:
	rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll

distclean: clean
	rm -f .depend

.PHONY: all depend dep clean distclean install* uninstall*

ifneq ($(wildcard .depend),)
include .depend
endif