mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-16 12:24:52 +00:00
cf9d24adf6
have it passed to GCC) - Moving the usage in configure to the top of it, so you don't have to wait needlessly - Silence compiler output during configuration - Add support for configuring with IBM XLC patch by (Dan Christiansen <danchr at daimi dot au dot dk>) Originally committed as revision 2397 to svn://svn.ffmpeg.org/ffmpeg/trunk
46 lines
858 B
Makefile
46 lines
858 B
Makefile
include ../config.mak
|
|
|
|
VPATH=$(SRC_PATH)/vhook
|
|
|
|
CFLAGS=-fPIC $(OPTFLAGS) -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavformat -I$(SRC_PATH)/libavcodec -DHAVE_AV_CONFIG_H
|
|
|
|
ifeq ($(CONFIG_DARWIN),yes)
|
|
SHFLAGS+=-bundle -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 -s -m 755 $(HOOKS) $(INSTDIR)
|
|
|
|
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
|