]> git.pld-linux.org Git - packages/ladspa-tap-plugins.git/blame - ladspa-tap-plugins-DESTDIR_OPTFLAGS.patch
- up tp 0.4.2
[packages/ladspa-tap-plugins.git] / ladspa-tap-plugins-DESTDIR_OPTFLAGS.patch
CommitLineData
a19901e9 1diff -aurN tap-plugins-0.3.0.orig/Makefile tap-plugins-0.3.0/Makefile
2--- tap-plugins-0.3.0.orig/Makefile 2004-02-04 15:58:30.000000000 +0100
3+++ tap-plugins-0.3.0/Makefile 2004-02-08 19:14:15.078346312 +0100
c3cb9391 4@@ -23,8 +23,8 @@
5 # Change this if you want to install somewhere else. In particularly
6 # you may wish to remove the middle "local/" part of the path.
7
8-INSTALL_PLUGINS_DIR = /usr/local/lib/ladspa/
9-INSTALL_LRDF_DIR = /usr/local/share/ladspa/rdf/
a19901e9 10+INSTALL_PLUGINS_DIR = $(DESTDIR)/usr/lib/ladspa/
11+INSTALL_LRDF_DIR = $(DESTDIR)/usr/share/ladspa/rdf/
c3cb9391 12
13 # NO EDITING below this line is required
14 # if all you want to do is install and use the plugins.
a19901e9 15@@ -49,31 +49,31 @@
c3cb9391 16 # RULES TO BUILD PLUGINS FROM C CODE
17
18 tap_tremolo.so: tap_tremolo.c tap_utils.h ladspa.h
19- $(CC) -I. -O3 -Wall -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math -c -fPIC -DPIC tap_tremolo.c -o tap_tremolo.o
20+ $(CC) -I. $(OPTFLAGS) -Wall -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math -c -fPIC -DPIC tap_tremolo.c -o tap_tremolo.o
21 $(CC) -nostartfiles -shared -Wl,-Bsymbolic -lc -lm -lrt -o tap_tremolo.so tap_tremolo.o
22
23 tap_eq.so: tap_eq.c tap_utils.h ladspa.h
24- $(CC) -I. -O3 -Wall -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math -c -fPIC -DPIC tap_eq.c -o tap_eq.o
25+ $(CC) -I. $(OPTFLAGS) -Wall -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math -c -fPIC -DPIC tap_eq.c -o tap_eq.o
26 $(CC) -nostartfiles -shared -Wl,-Bsymbolic -lc -lm -lrt -o tap_eq.so tap_eq.o
27
28 tap_echo.so: tap_echo.c tap_utils.h ladspa.h
29- $(CC) -I. -O3 -Wall -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math -c -fPIC -DPIC tap_echo.c -o tap_echo.o
30+ $(CC) -I. $(OPTFLAGS) -Wall -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math -c -fPIC -DPIC tap_echo.c -o tap_echo.o
31 $(CC) -nostartfiles -shared -Wl,-Bsymbolic -lc -lm -lrt -o tap_echo.so tap_echo.o
32
33 tap_reverb.so: tap_reverb.c tap_reverb.h tap_reverb_presets.h tap_utils.h ladspa.h
34- $(CC) -I. -O3 -Wall -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math -c -fPIC -DPIC tap_reverb.c -o tap_reverb.o
35+ $(CC) -I. $(OPTFLAGS) -Wall -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math -c -fPIC -DPIC tap_reverb.c -o tap_reverb.o
36 $(CC) -nostartfiles -shared -Wl,-Bsymbolic -lc -lm -lrt -o tap_reverb.so tap_reverb.o
37
38 tap_limiter.so: tap_limiter.c tap_utils.h ladspa.h
39- $(CC) -I. -O3 -Wall -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math -c -fPIC -DPIC tap_limiter.c -o tap_limiter.o
40+ $(CC) -I. $(OPTFLAGS) -Wall -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math -c -fPIC -DPIC tap_limiter.c -o tap_limiter.o
41 $(CC) -nostartfiles -shared -Wl,-Bsymbolic -lc -lm -lrt -o tap_limiter.so tap_limiter.o
42
a19901e9 43 tap_autopan.so: tap_autopan.c tap_utils.h ladspa.h
44- $(CC) -I. -O3 -Wall -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math -c -fPIC -DPIC tap_autopan.c -o tap_autopan.o
45+ $(CC) -I. $(OPTFLAGS) -Wall -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math -c -fPIC -DPIC tap_autopan.c -o tap_autopan.o
46 $(CC) -nostartfiles -shared -Wl,-Bsymbolic -lc -lm -lrt -o tap_autopan.so tap_autopan.o
c3cb9391 47
a19901e9 48 tap_deesser.so: tap_deesser.c tap_utils.h ladspa.h
49- $(CC) -I. -O3 -Wall -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math -c -fPIC -DPIC tap_deesser.c -o tap_deesser.o
50+ $(CC) -I. $(OPTFLAGS) -Wall -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math -c -fPIC -DPIC tap_deesser.c -o tap_deesser.o
51 $(CC) -nostartfiles -shared -Wl,-Bsymbolic -lc -lm -lrt -o tap_deesser.so tap_deesser.o
c3cb9391 52
c3cb9391 53
This page took 0.076044 seconds and 4 git commands to generate.