mirror of https://github.com/FFmpeg/FFmpeg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.2 KiB
50 lines
1.2 KiB
include ../config.mak |
|
|
|
VPATH=$(SRC_PATH)/vhook |
|
|
|
CFLAGS=-fPIC $(SHCFLAGS) -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavformat -I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libavutil -DHAVE_AV_CONFIG_H |
|
|
|
#FIXME: This needs to be in configure/config.mak |
|
ifeq ($(CONFIG_DARWIN),yes) |
|
SHFLAGS = -dynamiclib -Wl,-single_module -flat_namespace -undefined suppress -Wl,-install_name,$(libdir)/vhook/$@ |
|
endif |
|
HOOKS=null$(SLIBSUF) fish$(SLIBSUF) ppm$(SLIBSUF) watermark$(SLIBSUF) |
|
|
|
ifeq ($(HAVE_IMLIB2),yes) |
|
HOOKS += imlib2$(SLIBSUF) |
|
endif |
|
|
|
ifeq ($(HAVE_FREETYPE2),yes) |
|
HOOKS += drawtext$(SLIBSUF) |
|
CFLAGS += `freetype-config --cflags` |
|
endif |
|
|
|
all: $(HOOKS) |
|
|
|
SRCS := $(HOOKS:$(SLIBSUF)=.c) |
|
|
|
depend: $(SRCS) |
|
$(CC) -MM $(CFLAGS) $^ 1>.depend |
|
|
|
install: |
|
install -d "$(libdir)/vhook" |
|
install -m 755 $(HOOKS) "$(libdir)/vhook" |
|
|
|
imlib2$(SLIBSUF): imlib2.o |
|
$(CC) $(LDFLAGS) -g -o $@ $(SHFLAGS) $< -lImlib2 |
|
|
|
drawtext$(SLIBSUF): drawtext.o |
|
$(CC) $(LDFLAGS) -g -o $@ $(SHFLAGS) $< `freetype-config --libs` |
|
|
|
%$(SLIBSUF): %.o |
|
$(CC) $(LDFLAGS) -g -o $@ $(SHFLAGS) $< |
|
|
|
clean: |
|
rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll |
|
|
|
distclean: clean |
|
rm -f .depend |
|
|
|
ifneq ($(wildcard .depend),) |
|
include .depend |
|
endif
|
|
|