1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-23 18:01:50 +02:00
ffmpeg/vhook/Makefile
Michael Niedermayer aa99b8ff4f spaces in the patch fix by (Nicolas Boos <nicolas.boos at wanadoo dot fr>)
Originally committed as revision 3296 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-07-08 11:02:04 +00:00

47 lines
892 B
Makefile

include ../config.mak
VPATH=$(SRC_PATH)/vhook
CFLAGS=-fPIC $(SHCFLAGS) -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavformat -I$(SRC_PATH)/libavcodec -DHAVE_AV_CONFIG_H
ifeq ($(CONFIG_DARWIN),yes)
SHFLAGS+=-flat_namespace -undefined suppress
endif
HOOKS=null.so fish.so ppm.so
ifeq ($(HAVE_IMLIB2),yes)
HOOKS += imlib2.so
endif
ifeq ($(HAVE_FREETYPE2),yes)
HOOKS += drawtext.so
CFLAGS += `freetype-config --cflags`
endif
all: $(HOOKS)
SRCS := $(HOOKS:.so=.c)
depend: $(SRCS)
$(CC) -MM $(CFLAGS) $^ 1>.depend
install:
install -d "$(prefix)/lib/vhook"
install -m 755 $(HOOKS) "$(prefix)/lib/vhook"
imlib2.so: imlib2.o
$(CC) -g -o $@ $(SHFLAGS) $< -lImlib2
drawtext.so: drawtext.o
$(CC) -g -o $@ $(SHFLAGS) $< `freetype-config --libs`
%.so: %.o
$(CC) -g -o $@ $(SHFLAGS) $<
clean:
rm -f *.o *.d .depend *.so *~
ifneq ($(wildcard .depend),)
include .depend
endif