mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
77b71ddc11
update .cvsignore (somehere) to exclude .d files Originally committed as revision 1459 to svn://svn.ffmpeg.org/ffmpeg/trunk
40 lines
695 B
Makefile
40 lines
695 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)
|
|
|
|
DEPS= $(HOOKS:.so=.d)
|
|
|
|
install:
|
|
install -s -m 755 $(HOOKS) $(INSTDIR)
|
|
|
|
imlib2.so: imlib2.o
|
|
$(CC) -g -o $@ $(SHFLAGS) $< -lImlib2
|
|
|
|
%.so: %.o
|
|
$(CC) -g -o $@ $(SHFLAGS) $<
|
|
|
|
%.d: %.c
|
|
@echo $@ \\ > $@
|
|
$(CC) $(CFLAGS) -MM $< >> $@
|
|
|
|
-include $(DEPS)
|
|
|
|
%.html: %.texi
|
|
texi2html -monolithic -number $<
|
|
|
|
clean:
|
|
rm -f *.o *.d *.so *~
|