blob: 2af11d25792910c2c14332150787eaf3f59ab713 (
plain)
1 Index: subtitleripper/Makefile
2 ===================================================================
3 --- subtitleripper.orig/Makefile
4 +++ subtitleripper/Makefile
5 @@ -70,19 +70,19 @@ vobsub2pgm.o: vobsub2pgm.c vobsub.h spud
6 # Target
7 subtitle2pgm: subtitle2pgm.o spudec.o
8 @echo "Linking $@"
9 - @$(CC) $^ -o $@ $(LIBS)
10 + @$(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
11
12 subtitle2vobsub: subtitle2vobsub.o vobsub.o
13 @echo "Linking $@"
14 - @$(CC) $^ -o $@ $(LIBS)
15 + @$(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
16
17 srttool: srttool.o
18 @echo "Linking $@"
19 - @$(CC) -g $^ -o $@ $(LIBS)
20 + @$(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
21
22 vobsub2pgm: vobsub2pgm.o vobsub.o spudec.o
23 @echo "Linking $@"
24 - @$(CC) -g $^ -o $@ $(LIBS)
25 + @$(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
26
27 .PHONY: clean dist rpm
28 clean:
|