mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
26b4bb70c2
they do and their capabilities. Originally committed as revision 1265 to svn://svn.ffmpeg.org/ffmpeg/trunk
28 lines
445 B
Makefile
28 lines
445 B
Makefile
include ../config.mak
|
|
|
|
CFLAGS=-fPIC $(OPTFLAGS) -g -Wall -I.. -I../libav -I../libavcodec -DHAVE_AV_CONFIG_H
|
|
|
|
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 $@ -shared $< -lImlib2
|
|
rm $<
|
|
|
|
%.so: %.o
|
|
$(CC) -g -o $@ -shared $<
|
|
|
|
%.html: %.texi
|
|
texi2html -monolithic -number $<
|
|
|
|
clean:
|
|
rm -f *.o *.so *~
|