1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-23 09:45:06 +02:00
ffmpeg/vhook/Makefile
Fabrice Bellard 4b8b2edb62 dependency handling is consistant with libavcodec
Originally committed as revision 1492 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-01-22 09:55:08 +00:00

38 lines
673 B
Makefile

include ../config.mak
VPATH=$(SRC_PATH)/vhook
CFLAGS=-fPIC $(OPTFLAGS) -g -Wall -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
ifeq ($(HAVE_IMLIB2),yes)
HOOKS += imlib2.so
endif
all: $(HOOKS)
SRCS := $(OBJS:.o=.c)
.depend: $(SRCS)
$(CC) -MM $(CFLAGS) $^ 1>.depend
install:
install -s -m 755 $(HOOKS) $(INSTDIR)
imlib2.so: imlib2.o
$(CC) -g -o $@ $(SHFLAGS) $< -lImlib2
%.so: %.o
$(CC) -g -o $@ $(SHFLAGS) $<
clean:
rm -f *.o *.d .depend *.so *~
ifneq ($(wildcard .depend),)
include .depend
endif