mirror of https://git.ffmpeg.org/ffmpeg.git
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
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 -I$(SRC_PATH)/libswscale $(VHOOKCFLAGS) -DHAVE_AV_CONFIG_H
|
|
LDFLAGS+= -g
|
|
|
|
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
|