Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « vhook - github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f198058f066a46d8646d564a16c8beabb51ef82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 *~