]> git.sesse.net Git - vlc/blob - Makefile.in
The motion compensation routines are now modules as well ; choose your
[vlc] / Makefile.in
1 ################################################################################
2 # vlc (VideoLAN Client) main makefile
3 # (c)1998 VideoLAN
4 ################################################################################
5 # This makefile is the main makefile for the VideoLAN client.
6 ################################################################################
7
8 ################################################################################
9 # Configuration
10 ################################################################################
11
12 # Debugging mode on or off (set to 1 to activate)
13 DEBUG=@DEBUG@
14 STATS=@STATS@
15 OPTIMS=@OPTIMS@
16
17 SYS=@SYS@
18 PLUGINS=@PLUGINS@
19 SNAPSHOTDIR=vlc-@VLC_VERSION@
20 INSTALL=@INSTALL@
21 ARCH=@ARCH@
22 prefix=@prefix@
23 CC=@CC@
24 SHELL=@SHELL@
25
26 LIB_SDL=@LIB_SDL@
27 LIB_GLIDE=@LIB_GLIDE@
28 LIB_GGI=@LIB_GGI@
29
30 #----------------- do not change anything below this line ----------------------
31
32 ################################################################################
33 # Configuration pre-processing
34 ################################################################################
35
36 # PROGRAM_OPTIONS is an identification string of the compilation options
37 PROGRAM_OPTIONS = $(SYS) $(ARCH)
38 ifeq ($(DEBUG),1)
39 PROGRAM_OPTIONS += DEBUG
40 DEFINE += -DDEBUG
41 endif
42 ifeq ($(STATS),1)
43 PROGRAM_OPTIONS += DEBUG
44 DEFINE += -DSTATS
45 endif
46
47 # PROGRAM_BUILD is a complete identification of the build
48 # ( we can't use fancy options with date since OSes like Solaris
49 # or FreeBSD have strange date implementations )
50 PROGRAM_BUILD = `date` $(USER)
51 # XXX: beos does not support hostname
52 #PROGRAM_BUILD = `date` $(USER)@`hostname`
53
54 # DEFINE will contain some of the constants definitions decided in Makefile, 
55 # including SYS_xx. It will be passed to C compiler.
56 DEFINE += -DSYS_$(shell echo $(SYS) | sed 's/-.*//' | tr a-z. A-Z_)
57
58 ################################################################################
59 # Tuning and other variables - do not change anything except if you know
60 # exactly what you are doing
61 ################################################################################
62
63 #
64 # C headers directories
65 #
66 INCLUDE += -Iinclude -I/usr/local/include -I/usr/X11R6/include
67
68 #
69 # Libraries
70 #
71 ifeq ($(SYS),gnu)
72 LIB += -lthreads -ldl
73 endif
74
75 ifneq (,$(findstring bsd,$(SYS)))
76 LIB += -pthread -lgnugetopt
77 LIB += -L/usr/local/lib
78 endif
79
80 ifneq (,$(findstring linux,$(SYS)))
81 LIB += -lpthread -ldl
82 endif
83
84 ifneq (,$(findstring solaris,$(SYS)))
85 LIB += -ldl -lsocket -lnsl -lpthread
86 endif
87
88 ifeq ($(SYS),beos)
89 LIB += -lbe -lroot -lgame
90 else
91 LIB += -lm
92 endif
93
94 #
95 # C compiler flags: mainstream compilation
96 #
97 CFLAGS += $(DEFINE) $(INCLUDE)
98 CFLAGS += -Wall -Winline
99 CFLAGS += -D_REENTRANT
100 CFLAGS += -D_GNU_SOURCE
101
102 # flags needed for clean beos compilation
103 ifeq ($(SYS),beos)
104 CFLAGS += -Wno-multichar -Wno-ctor-dtor-privacy -Woverloaded-virtual
105 endif
106
107 # Optimizations : don't compile debug versions with them
108 ifeq ($(OPTIMS),1)
109 CFLAGS += -O6
110 CFLAGS += -ffast-math -funroll-loops -funroll-all-loops
111 CFLAGS += -fomit-frame-pointer
112 CFLAGS += @BIZARRE_OPTIMS@
113
114 # Optimizations for x86 familiy
115 ifneq (,$(findstring 86,$(ARCH)))
116 CFLAGS += -malign-double
117 # Optional Pentium Pro optimizations
118 ifneq (,$(findstring ppro,$(ARCH)))
119 CFLAGS += -march=pentiumpro -mcpu=pentiumpro
120 else
121 CFLAGS += -march=pentium -mcpu=pentium
122 endif
123 endif
124
125 # Optimizations for PowerPC
126 ifneq (,$(findstring powerpc,$(ARCH)))
127 # 604e
128 CFLAGS += -mcpu=604e -mmultiple -mhard-float -mstring
129 # G3
130 #CFLAGS += -mcpu=750 -mmultiple -mhard-float -mstring
131 # G4
132 #CFLAGS += -mcpu=7400 -mmultiple -mhard-float -mstring
133 endif
134
135 # Optimizations for Sparc
136 ifneq (,$(findstring sparc,$(ARCH)))
137 CFLAGS += -mhard-float
138 endif
139
140 #end of optimisations
141 endif
142
143 # Optional MMX optimizations for x86
144 ifneq (,$(findstring mmx,$(ARCH)))
145 CFLAGS += -DHAVE_MMX
146 endif
147
148 #
149 # C compiler flags: plugin compilation
150 #
151 PCFLAGS += -fPIC
152
153 #
154 # C compiler flags: dependancies
155 #
156 DCFLAGS += $(INCLUDE)
157 DCFLAGS += -MM
158
159 #
160 # C compiler flags: linking
161 #
162 LCFLAGS += $(LIB)
163 LCFLAGS += -Wall
164 #LCFLAGS += -s
165
166 #
167 # Debugging and profiling support (unless optimisations are active)
168 #
169 ifneq ($(OPTIMS),1)
170 CFLAGS += -g
171 endif
172
173 #################################################################################
174 # Objects and files
175 #################################################################################
176
177 #
178 # C Objects
179
180 INTERFACE =     src/interface/main.o \
181                 src/interface/interface.o \
182                 src/interface/intf_msg.o \
183                 src/interface/intf_cmd.o \
184                 src/interface/intf_ctrl.o \
185                 src/interface/intf_console.o
186
187 INPUT =         src/input/input_ps.o \
188                 src/input/input_ts.o \
189                 src/input/dvd_ifo.o \
190                 src/input/input_dvd.o \
191                 src/input/mpeg_system.o \
192                 src/input/input_ext-dec.o \
193                 src/input/input_dec.o \
194                 src/input/input_programs.o \
195                 src/input/input_netlist.o \
196                 src/input/input.o
197
198 AUDIO_OUTPUT =  src/audio_output/audio_output.o
199
200 VIDEO_OUTPUT =  src/video_output/video_output.o \
201                 src/video_output/video_text.o \
202                 src/video_output/video_spu.o \
203                 src/video_output/video_yuv.o
204
205 AC3_DECODER =   src/ac3_decoder/ac3_decoder_thread.o \
206                 src/ac3_decoder/ac3_decoder.o \
207                 src/ac3_decoder/ac3_parse.o \
208                 src/ac3_decoder/ac3_exponent.o \
209                 src/ac3_decoder/ac3_bit_allocate.o \
210                 src/ac3_decoder/ac3_mantissa.o \
211                 src/ac3_decoder/ac3_rematrix.o \
212                 src/ac3_decoder/ac3_imdct.o \
213                 src/ac3_decoder/ac3_downmix.o
214
215 LPCM_DECODER =  src/lpcm_decoder/lpcm_decoder_thread.o \
216                 src/lpcm_decoder/lpcm_decoder.o
217
218 AUDIO_DECODER = src/audio_decoder/audio_decoder.o \
219                 src/audio_decoder/adec_generic.o \
220                 src/audio_decoder/adec_layer1.o \
221                 src/audio_decoder/adec_layer2.o \
222                 src/audio_decoder/adec_math.o
223
224 SPU_DECODER =   src/spu_decoder/spu_decoder.o
225
226 #GEN_DECODER =  src/generic_decoder/generic_decoder.o
227
228 VIDEO_PARSER =  src/video_parser/video_parser.o \
229                 src/video_parser/vpar_headers.o \
230                 src/video_parser/vpar_blocks.o \
231                 src/video_parser/vpar_synchro.o \
232                 src/video_parser/video_fifo.o
233
234 VIDEO_DECODER = src/video_decoder/video_decoder.o
235
236 MISC =          src/misc/mtime.o \
237                 src/misc/tests.o \
238                 src/misc/rsc_files.o \
239                 src/misc/modules.o \
240                 src/misc/netutils.o \
241                 src/misc/playlist.o \
242                 src/misc/plugins.o
243
244
245 C_OBJ =         $(INTERFACE) \
246                 $(INPUT) \
247                 $(VIDEO_OUTPUT) \
248                 $(AUDIO_OUTPUT) \
249                 $(AC3_DECODER) \
250                 $(LPCM_DECODER) \
251                 $(AUDIO_DECODER) \
252                 $(SPU_DECODER) \
253                 $(GEN_DECODER) \
254                 $(VIDEO_PARSER) \
255                 $(VIDEO_DECODER) \
256                 $(MISC)
257
258
259 #
260 # CPP Objects
261
262 ifeq ($(SYS),beos)
263 CPP_OBJ =       src/misc/beos_specific.o
264 endif
265
266 #
267 # Assembler Objects
268
269 ifneq (,$(findstring 86,$(ARCH)))
270 ifneq (,$(findstring mmx,$(ARCH)))
271 ASM_OBJ =               
272 STD_PLUGIN_ASM =        
273 endif
274 endif
275
276 #
277 # Plugins
278 #
279 PLUGIN_BEOS =   plugins/beos/beos.o \
280                 plugins/beos/aout_beos.o \
281                 plugins/beos/intf_beos.o \
282                 plugins/beos/vout_beos.o
283
284 PLUGIN_DSP =    plugins/dsp/dsp.o \
285                 plugins/dsp/aout_dsp.o
286
287
288 PLUGIN_DUMMY =  plugins/dummy/dummy.o \
289                 plugins/dummy/aout_dummy.o \
290                 plugins/dummy/intf_dummy.o \
291                 plugins/dummy/vout_dummy.o
292
293 PLUGIN_ESD =    plugins/esd/esd.o \
294                 plugins/esd/aout_esd.o
295
296 PLUGIN_FB =     plugins/fb/fb.o \
297                 plugins/fb/intf_fb.o \
298                 plugins/fb/vout_fb.o
299
300 PLUGIN_GGI =    plugins/ggi/ggi.o \
301                 plugins/ggi/intf_ggi.o \
302                 plugins/ggi/vout_ggi.o
303
304 PLUGIN_SDL =    plugins/sdl/sdl.o \
305                 plugins/sdl/intf_sdl.o \
306                 plugins/sdl/vout_sdl.o \
307                 plugins/sdl/aout_sdl.o 
308
309 PLUGIN_NULL =   plugins/null/null.o
310
311 PLUGIN_GLIDE =  plugins/glide/glide.o \
312                 plugins/glide/intf_glide.o \
313                 plugins/glide/vout_glide.o
314
315 PLUGIN_GNOME =  plugins/gnome/gnome.o \
316                 plugins/gnome/intf_gnome.o \
317                 plugins/gnome/intf_gnome_callbacks.o \
318                 plugins/gnome/intf_gnome_interface.o \
319                 plugins/gnome/intf_gnome_support.o \
320                 plugins/gnome/vout_gnome.o
321
322 PLUGIN_MGA =    plugins/mga/mga.o \
323                 plugins/mga/intf_mga.o \
324                 plugins/mga/vout_mga.o
325
326 PLUGIN_X11=     plugins/x11/x11.o \
327                 plugins/x11/intf_x11.o \
328                 plugins/x11/vout_x11.o
329
330 PLUGIN_YUV =    plugins/yuv/yuv.o \
331                 plugins/yuv/video_yuv.o \
332                 plugins/yuv/transforms_yuv.o
333
334 PLUGIN_YUVMMX = plugins/yuv/yuvmmx.o \
335                 plugins/yuv/video_yuvmmx.o \
336                 plugins/yuv/transforms_yuvmmx.o
337
338 PLUGIN_MOTION = plugins/motion/motion.o \
339                 plugins/motion/vdec_motion_common.o \
340                 plugins/motion/vdec_motion_inner.o
341
342 PLUGIN_MOTIONMMX =      plugins/motion/motionmmx.o \
343                         plugins/motion/vdec_motion_common.o \
344                         plugins/motion/vdec_motion_inner_mmx.o
345
346 PLUGIN_MOTIONMMXEXT =   plugins/motion/motionmmxext.o \
347                         plugins/motion/vdec_motion_common.o \
348                         plugins/motion/vdec_motion_inner_mmxext.o
349
350 PLUGIN_IDCT =   plugins/idct/idct.o \
351                 plugins/idct/idct_common.o
352
353 PLUGIN_IDCTCLASSIC =    plugins/idct/idctclassic.o \
354                         plugins/idct/idct_common.o
355
356 PLUGIN_IDCTMMX =        plugins/idct/idctmmx.o \
357                         plugins/idct/idct_common.o
358
359 PLUGIN_IDCTMMXEXT =     plugins/idct/idctmmxext.o \
360                         plugins/idct/idct_common.o
361
362 PLUGIN_ALSA =   plugins/alsa/alsa.o \
363                 plugins/alsa/aout_alsa.o
364
365 STD_PLUGIN_OBJ =$(PLUGIN_BEOS) \
366                 $(PLUGIN_DSP) \
367                 $(PLUGIN_DUMMY) \
368                 $(PLUGIN_ESD) \
369                 $(PLUGIN_FB) \
370                 $(PLUGIN_GGI) \
371                 $(PLUGIN_MGA) \
372                 $(PLUGIN_X11) \
373                 $(PLUGIN_YUV) \
374                 $(PLUGIN_YUVMMX) \
375                 $(PLUGIN_MOTION) \
376                 $(PLUGIN_MOTIONMMX) \
377                 $(PLUGIN_MOTIONMMXEXT) \
378                 $(PLUGIN_IDCT) \
379                 $(PLUGIN_IDCTCLASSIC) \
380                 $(PLUGIN_IDCTMMX) \
381                 $(PLUGIN_IDCTMMXEXT) \
382                 $(PLUGIN_SDL) \
383                 $(PLUGIN_ALSA) \
384                 $(PLUGIN_NULL)
385
386 # list duplicates
387 STD_PLUGIN_COMMON =     plugins/idct/idct_common.o \
388                         plugins/motion/vdec_motion_common.o
389
390 # filter out duplicates from the plugin object lists
391 STD_PLUGIN_OBJ :=       $(filter-out $(STD_PLUGIN_COMMON) $(STD_PLUGIN_ASM), \
392                                  $(STD_PLUGIN_OBJ)) $(STD_PLUGIN_COMMON)
393
394 #
395 # Other lists of files
396 #
397 objects := $(C_OBJ) $(CPP_OBJ) $(ASM_OBJ) $(STD_PLUGIN_OBJ) $(STD_PLUGIN_ASM)
398 dependancies := $(objects:%.o=.dep/%.d)
399
400 # All symbols must be exported
401 export
402
403 ################################################################################
404 # Targets
405 ################################################################################
406
407 #
408 # Virtual targets
409 #
410 all: vlc @ALIASES@ plugins
411
412 clean:
413         rm -f $(C_OBJ) $(CPP_OBJ) $(ASM_OBJ) $(STD_PLUGIN_OBJ)
414         rm -f plugins/*/*.o src/*/*.o lib/*.so
415         rm -f vlc @ALIASES@
416
417 distclean: clean
418         rm -f src/*/*.o plugins/*/*.o **/*~ *.log
419         rm -f Makefile include/defs.h include/config.h
420         rm -f config.status config.cache config.log
421         rm -f gmon.out core build-stamp
422         rm -rf .dep
423
424 install:
425         mkdir -p $(prefix)/bin
426         $(INSTALL) vlc $(prefix)/bin
427 # ugly
428         for alias in "" @ALIASES@ ; do if test $$alias ; then rm -f $(prefix)/bin/$$alias && ln -s vlc $(prefix)/bin/$$alias ; fi ; done
429         mkdir -p $(prefix)/lib/videolan/vlc
430         $(INSTALL) -m 644 $(PLUGINS:%=lib/%.so) $(prefix)/lib/videolan/vlc
431         mkdir -p $(prefix)/share/videolan
432         $(INSTALL) -m 644 share/*.psf $(prefix)/share/videolan
433         $(INSTALL) -m 644 share/*.png $(prefix)/share/videolan
434
435 show:
436         @echo CC: $(CC)
437         @echo CFLAGS: $(CFLAGS)
438         @echo DCFLAGS: $(DCFLAGS)
439         @echo LCFLAGS: $(LCFLAGS)
440         @echo STD_PLUGIN_OBJ: $(STD_PLUGIN_OBJ)
441
442 # ugliest of all, but I have no time to do it -- sam
443 snapshot:
444         rm -rf /tmp/${SNAPSHOTDIR}
445         mkdir /tmp/${SNAPSHOTDIR}
446         cp -a * /tmp/${SNAPSHOTDIR}
447                 (cd /tmp/${SNAPSHOTDIR} ; \
448                 make distclean ; \
449                 find . -type d -name CVS | xargs rm -rf ; \
450                 find . -type f -name '.*.swp' | xargs rm -f ; \
451                 find . -type f -name '.cvsignore' | xargs rm -f ; \
452                 cd .. ; \
453                 tar czvf ${SNAPSHOTDIR}.tar.gz ${SNAPSHOTDIR} ; \
454                 tar cIvf ${SNAPSHOTDIR}.tar.bz2 ${SNAPSHOTDIR} )
455         rm -rf /tmp/${SNAPSHOTDIR}
456         mv /tmp/${SNAPSHOTDIR}.tar.gz ..
457         mv /tmp/${SNAPSHOTDIR}.tar.bz2 ..
458         @echo "Sources are in ../${SNAPSHOTDIR}.tar.[gz,bz2]"
459
460 plugins: $(PLUGINS:%=lib/%.so)
461
462 FORCE:
463
464 #
465 # Gnome and Framebuffer aliases - don't add new aliases which could bloat
466 # the namespace
467 #
468 gvlc fbvlc: vlc
469         rm -f $@ && ln -s vlc $@
470
471
472 #
473 # Generic rules (see below)
474 #
475 $(dependancies): %.d: FORCE
476         @$(MAKE) -s --no-print-directory -f Makefile.dep $@
477
478 $(C_OBJ): %.o: Makefile.dep
479 $(C_OBJ): %.o: .dep/%.d
480 $(C_OBJ): %.o: %.c
481         $(CC) $(CFLAGS) -c -o $@ $<
482
483 $(CPP_OBJ): %.o: %.cpp
484         $(CC) $(CFLAGS) -c -o $@ $<
485
486 $(ASM_OBJ): %.o: Makefile.dep
487 $(ASM_OBJ): %.o: %.S
488         $(CC) $(CFLAGS) -c -o $@ $<
489
490 $(STD_PLUGIN_OBJ): %.o: Makefile.dep
491 $(STD_PLUGIN_OBJ): %.o: .dep/%.d
492 $(STD_PLUGIN_OBJ): %.o: %.c
493         $(CC) $(CFLAGS) $(PCFLAGS) -c -o $@ $<
494
495 $(STD_PLUGIN_ASM): %.o: Makefile.dep
496 $(STD_PLUGIN_ASM): %.o: %.S
497         $(CC) $(CFLAGS) $(PCFLAGS) -c -o $@ $<
498
499 $(PLUGIN_GNOME): %.o: Makefile.dep
500 $(PLUGIN_GNOME): %.o: %.c
501         $(CC) $(CFLAGS) $(PCFLAGS) `gnome-config --cflags gnomeui` -c -o $@ $<
502
503 $(PLUGIN_GLIDE): %.o: Makefile.dep
504 $(PLUGIN_GLIDE): %.o: %.c
505         $(CC) $(CFLAGS) $(PCFLAGS) -I/usr/include/glide -c -o $@ $<
506
507 #
508 # Main application target
509 #
510
511 vlc: $(C_OBJ) $(CPP_OBJ) $(ASM_OBJ)
512 ifeq ($(SYS),beos)
513         $(CC) $(CFLAGS) $(LCFLAGS) -Xlinker -soname=_APP_ -o $@ $(C_OBJ) $(CPP_OBJ) $(ASM_OBJ)
514         rm -f ./plugins/_APP_
515         ln -s ../vlc ./plugins/_APP_
516 else
517         $(CC) $(CFLAGS) $(LCFLAGS) --export-dynamic @DYNAMIC_FLAG@ -o $@ $(C_OBJ) $(CPP_OBJ) $(ASM_OBJ) 
518 endif
519
520 #
521 # Plugin targets
522 #
523
524 lib/beos.so: $(PLUGIN_BEOS)
525         $(CC) $(PCFLAGS) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
526
527 lib/esd.so: $(PLUGIN_ESD)
528 ifneq (,$(findstring bsd,$(SYS)))
529         $(CC) $(PCFLAGS) -shared -o $@ $^ -lesd
530 else
531         $(CC) $(PCFLAGS) -shared -o $@ $^ -laudiofile -lesd
532 endif
533
534 lib/dsp.so: $(PLUGIN_DSP)
535         $(CC) $(PCFLAGS) -shared -o $@ $^
536
537 lib/alsa.so: $(PLUGIN_ALSA)
538         $(CC) $(PCFLAGS) -shared -o $@ $^ -lasound
539
540 lib/fb.so: $(PLUGIN_FB)
541         $(CC) $(PCFLAGS) -shared -o $@ $^
542
543 lib/x11.so: $(PLUGIN_X11)
544         $(CC) $(PCFLAGS) -shared -o $@ $^ -L/usr/X11R6/lib -lX11 -lXext
545
546 lib/mga.so: $(PLUGIN_MGA)
547         $(CC) $(PCFLAGS) -shared -o $@ $^ -L/usr/X11R6/lib -lX11 -lXext
548
549 lib/gnome.so: $(PLUGIN_GNOME)
550         $(CC) $(PCFLAGS) -shared -o $@ $^ `gnome-config --libs gnomeui | sed 's,-rdynamic,,'`
551
552 lib/glide.so: $(PLUGIN_GLIDE)
553         $(CC) $(PCFLAGS) -shared -o $@ $^ $(LIB_GLIDE)
554
555 lib/ggi.so: $(PLUGIN_GGI)
556         $(CC) $(PCFLAGS) -shared -o $@ $^ $(LIB_GGI)
557
558 lib/sdl.so: $(PLUGIN_SDL)
559         $(CC) $(PCFLAGS) -shared -o $@ $^ $(LIB_SDL)
560
561 ifeq ($(SYS),beos)
562 lib/null.so: $(PLUGIN_NULL)
563         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
564
565 lib/dummy.so: $(PLUGIN_DUMMY)
566         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
567
568 lib/yuv.so: $(PLUGIN_YUV)
569         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
570
571 lib/yuvmmx.so: $(PLUGIN_YUVMMX)
572         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
573
574 lib/motion.so: $(PLUGIN_MOTION)
575         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
576
577 lib/motionmmx.so: $(PLUGIN_MOTIONMMX)
578         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
579
580 lib/motionmmxext.so: $(PLUGIN_MOTIONMMXEXT)
581         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
582
583 lib/idct.so: $(PLUGIN_IDCT)
584         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
585
586 lib/idctclassic.so: $(PLUGIN_IDCTCLASSIC)
587         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
588
589 lib/idctmmx.so: $(PLUGIN_IDCTMMX)
590         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
591
592 lib/idctmmxext.so: $(PLUGIN_IDCTMMXEXT)
593         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
594 else
595 lib/null.so: $(PLUGIN_NULL)
596         $(CC) $(PCFLAGS) -shared -o $@ $^
597
598 lib/dummy.so: $(PLUGIN_DUMMY)
599         $(CC) $(PCFLAGS) -shared -o $@ $^
600
601 lib/yuv.so: $(PLUGIN_YUV)
602         $(CC) $(PCFLAGS) -shared -o $@ $^
603
604 lib/yuvmmx.so: $(PLUGIN_YUVMMX)
605         $(CC) $(PCFLAGS) -shared -o $@ $^
606
607 lib/motion.so: $(PLUGIN_MOTION)
608         $(CC) $(PCFLAGS) -shared -o $@ $^
609
610 lib/motionmmx.so: $(PLUGIN_MOTIONMMX)
611         $(CC) $(PCFLAGS) -shared -o $@ $^
612
613 lib/motionmmxext.so: $(PLUGIN_MOTIONMMXEXT)
614         $(CC) $(PCFLAGS) -shared -o $@ $^
615
616 lib/idct.so: $(PLUGIN_IDCT)
617         $(CC) $(PCFLAGS) -shared -o $@ $^
618
619 lib/idctclassic.so: $(PLUGIN_IDCTCLASSIC)
620         $(CC) $(PCFLAGS) -shared -o $@ $^
621
622 lib/idctmmx.so: $(PLUGIN_IDCTMMX)
623         $(CC) $(PCFLAGS) -shared -o $@ $^
624
625 lib/idctmmxext.so: $(PLUGIN_IDCTMMXEXT)
626         $(CC) $(PCFLAGS) -shared -o $@ $^
627 endif
628
629 ################################################################################
630 # Note on generic rules and dependancies
631 ################################################################################
632
633 # Note on dependancies: each .c file is associated with a .d file, which
634 # depends of it. The .o file associated with a .c file depends of the .d, of the
635 # .c itself, and of Makefile. The .d files are stored in a separate .dep/
636 # directory.
637 # The dep directory should be ignored by CVS.
638
639 # Note on inclusions: depending of the target, the dependancies files must
640 # or must not be included. The problem is that if we ask make to include a file,
641 # and this file does not exist, it is made before it can be included. In a
642 # general way, a .d file should be included if and only if the corresponding .o
643 # needs to be re-made.
644
645 # Two makefiles are used: the main one (this one) has regular generic rules,
646 # except for .o files, for which it calls the object Makefile. Dependancies
647 # are not included in this file.
648 # The object Makefile known how to make a .o from a .c, and includes
649 # dependancies for the target, but only those required.