mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
abac617591
Originally committed as revision 1276 to svn://svn.ffmpeg.org/ffmpeg/trunk
33 lines
566 B
Makefile
33 lines
566 B
Makefile
include ../config.mak
|
|
|
|
CFLAGS=-fPIC $(OPTFLAGS) -g -Wall -I.. -I../libavformat -I../libavcodec -DHAVE_AV_CONFIG_H
|
|
|
|
ifeq ($(CONFIG_DARWIN),yes)
|
|
LDFLAGS+=-bundle -flat_namespace -undefined suppress
|
|
else
|
|
LDFLAGS+=-shared
|
|
endif
|
|
HOOKS=null.so fish.so
|
|
|
|
ifeq ($(HAVE_IMLIB2),yes)
|
|
HOOKS += imlib2.so
|
|
endif
|
|
|
|
all: $(HOOKS) hooks.html
|
|
|
|
install:
|
|
install -s -m 755 $(HOOKS) $(INSTDIR)
|
|
|
|
imlib2.so: imlib2.o
|
|
$(CC) -g -o $@ $(LDFLAGS) $< -lImlib2
|
|
rm $<
|
|
|
|
%.so: %.o
|
|
$(CC) -g -o $@ $(LDFLAGS) $<
|
|
|
|
%.html: %.texi
|
|
texi2html -monolithic -number $<
|
|
|
|
clean:
|
|
rm -f *.o *.so *~
|