]> git.sesse.net Git - vlc/blob - Makefile.in
(note: empty CVS mails mean that a new directory has been created,
[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 INSTALL=@INSTALL@
20 ARCH=@ARCH@
21
22 exec_prefix=@exec_prefix@
23 prefix=@prefix@
24 bindir=@bindir@
25 datadir=@datadir@
26 libdir=@libdir@
27
28 CC=@CC@
29 SHELL=@SHELL@
30
31 LIB_SDL=@LIB_SDL@
32 LIB_GLIDE=@LIB_GLIDE@
33 LIB_GGI=@LIB_GGI@
34
35 #----------------- do not change anything below this line ----------------------
36
37 ################################################################################
38 # Configuration pre-processing
39 ################################################################################
40
41 # PROGRAM_OPTIONS is an identification string of the compilation options
42 PROGRAM_OPTIONS = $(SYS) $(ARCH)
43 ifeq ($(DEBUG),1)
44 PROGRAM_OPTIONS += DEBUG
45 DEFINE += -DDEBUG
46 endif
47 ifeq ($(STATS),1)
48 PROGRAM_OPTIONS += DEBUG
49 DEFINE += -DSTATS
50 endif
51
52 # PROGRAM_BUILD is a complete identification of the build
53 # (we can't use fancy options with date since OSes like Solaris
54 # or FreeBSD have strange date implementations)
55 PROGRAM_BUILD = `date` $(USER)
56 # XXX: beos does not support hostname (how lame...)
57 #PROGRAM_BUILD = `date` $(USER)@`hostname`
58
59 # DEFINE will contain some of the constants definitions decided in Makefile, 
60 # including SYS_xx. It will be passed to C compiler.
61 DEFINE += -DSYS_$(shell echo $(SYS) | sed 's/-.*//' | tr a-z. A-Z_)
62
63 # On Linux activate 64-bit off_t (by default under BSD)
64 ifneq (,$(findstring linux,$(SYS)))
65 DEFINE += -D_FILE_OFFSET_BITS=64 -D__USE_UNIX98
66 endif
67
68 ################################################################################
69 # Tuning and other variables - do not change anything except if you know
70 # exactly what you are doing
71 ################################################################################
72
73 #
74 # C headers directories
75 #
76 INCLUDE += -Iinclude -I/usr/local/include -I/usr/X11R6/include
77
78 #
79 # Libraries
80 #
81 ifeq ($(SYS),gnu)
82 LIB += -lthreads -ldl
83 endif
84
85 ifneq (,$(findstring bsd,$(SYS)))
86 LIB += -pthread -lgnugetopt
87 LIB += -L/usr/local/lib
88 endif
89
90 ifneq (,$(findstring linux,$(SYS)))
91 LIB += -lpthread -ldl
92 endif
93
94 ifneq (,$(findstring solaris,$(SYS)))
95 LIB += -ldl -lsocket -lnsl -lpthread
96 endif
97
98 ifeq ($(SYS),beos)
99 LIB += -lbe -lroot -lgame
100 else
101 LIB += -lm
102 endif
103
104 #
105 # C compiler flags: mainstream compilation
106 #
107 CFLAGS += $(DEFINE) $(INCLUDE)
108 CFLAGS += -Wall -Winline
109 CFLAGS += -D_REENTRANT
110 CFLAGS += -D_GNU_SOURCE
111
112 # flags needed for clean beos compilation
113 ifeq ($(SYS),beos)
114 CFLAGS += -Wno-multichar -Wno-ctor-dtor-privacy -Woverloaded-virtual
115 endif
116
117 # Optimizations : don't compile debug versions with them
118 ifeq ($(OPTIMS),1)
119 CFLAGS += -O3
120 CFLAGS += -ffast-math -funroll-loops
121 CFLAGS += -fomit-frame-pointer
122
123 # Optimizations for x86 familiy
124 ifneq (,$(findstring 86,$(ARCH)))
125 # Optional Pentium Pro optimizations
126 ifneq (,$(findstring ppro,$(ARCH)))
127 CFLAGS += -march=pentiumpro -mcpu=pentiumpro
128 else
129 CFLAGS += -march=pentium -mcpu=pentium
130 endif
131 endif
132
133 # Optimizations for PowerPC
134 ifneq (,$(findstring powerpc,$(ARCH)))
135 # 604e
136 CFLAGS += -mcpu=604e -mmultiple -mhard-float -mstring
137 # G3
138 #CFLAGS += -mcpu=750 -mmultiple -mhard-float -mstring
139 # G4
140 #CFLAGS += -mcpu=7400 -mmultiple -mhard-float -mstring
141 endif
142
143 # Optimizations for Sparc
144 ifneq (,$(findstring sparc,$(ARCH)))
145 CFLAGS += -mhard-float
146 endif
147
148 #end of optimisations
149 endif
150
151 # Optional MMX optimizations for x86
152 ifneq (,$(findstring mmx,$(ARCH)))
153 CFLAGS += -DHAVE_MMX
154 endif
155
156 #
157 # C compiler flags: plugin compilation
158 #
159 PCFLAGS += -fPIC
160
161 #
162 # C compiler flags: dependancies
163 #
164 DCFLAGS += $(INCLUDE)
165 DCFLAGS += -MM
166
167 #
168 # C compiler flags: linking
169 #
170 LCFLAGS += $(LIB)
171 LCFLAGS += -Wall
172 #LCFLAGS += -s
173
174 #
175 # Debugging and profiling support (unless optimisations are active)
176 #
177 ifneq ($(OPTIMS),1)
178 CFLAGS += -g
179 endif
180
181 #################################################################################
182 # Objects and files
183 #################################################################################
184
185 #
186 # C Objects
187
188 INTERFACE =     src/interface/main.o \
189                 src/interface/interface.o \
190                 src/interface/intf_msg.o \
191                 src/interface/intf_cmd.o \
192                 src/interface/intf_ctrl.o \
193                 src/interface/intf_plst.o \
194                 src/interface/intf_channels.o \
195                 src/interface/intf_console.o
196
197 INPUT =         src/input/input_ext-dec.o \
198                 src/input/input_ext-intf.o \
199                 src/input/input_dec.o \
200                 src/input/input_programs.o \
201                 src/input/input_netlist.o \
202                 src/input/input_clock.o \
203                 src/input/input.o \
204                 src/input/mpeg_system.o
205
206 AUDIO_OUTPUT =  src/audio_output/audio_output.o
207
208 VIDEO_OUTPUT =  src/video_output/video_output.o \
209                 src/video_output/video_text.o \
210                 src/video_output/video_spu.o \
211                 src/video_output/video_yuv.o
212
213 AC3_DECODER =   src/ac3_decoder/ac3_decoder_thread.o \
214                 src/ac3_decoder/ac3_decoder.o \
215                 src/ac3_decoder/ac3_parse.o \
216                 src/ac3_decoder/ac3_exponent.o \
217                 src/ac3_decoder/ac3_bit_allocate.o \
218                 src/ac3_decoder/ac3_mantissa.o \
219                 src/ac3_decoder/ac3_rematrix.o \
220                 src/ac3_decoder/ac3_imdct.o \
221                 src/ac3_decoder/ac3_downmix.o \
222                 src/ac3_decoder/ac3_downmix_c.o
223
224 LPCM_DECODER =  src/lpcm_decoder/lpcm_decoder_thread.o \
225                 src/lpcm_decoder/lpcm_decoder.o
226
227 AUDIO_DECODER = src/audio_decoder/audio_decoder.o \
228                 src/audio_decoder/adec_generic.o \
229                 src/audio_decoder/adec_layer1.o \
230                 src/audio_decoder/adec_layer2.o \
231                 src/audio_decoder/adec_math.o
232
233 SPU_DECODER =   src/spu_decoder/spu_decoder.o
234
235 #GEN_DECODER =  src/generic_decoder/generic_decoder.o
236
237 VIDEO_PARSER =  src/video_parser/video_parser.o \
238                 src/video_parser/vpar_headers.o \
239                 src/video_parser/vpar_blocks.o \
240                 src/video_parser/vpar_synchro.o \
241                 src/video_parser/video_fifo.o
242
243 VIDEO_DECODER = src/video_decoder/video_decoder.o
244
245 MISC =          src/misc/mtime.o \
246                 src/misc/tests.o \
247                 src/misc/rsc_files.o \
248                 src/misc/modules.o \
249                 src/misc/netutils.o
250
251
252 C_OBJ =         $(INTERFACE) \
253                 $(INPUT) \
254                 $(VIDEO_OUTPUT) \
255                 $(AUDIO_OUTPUT) \
256                 $(AC3_DECODER) \
257                 $(LPCM_DECODER) \
258                 $(AUDIO_DECODER) \
259                 $(SPU_DECODER) \
260                 $(GEN_DECODER) \
261                 $(VIDEO_PARSER) \
262                 $(VIDEO_DECODER) \
263                 $(MISC)
264
265
266 #
267 # CPP Objects
268
269 ifeq ($(SYS),beos)
270 CPP_OBJ =       src/misc/beos_specific.o
271 endif
272
273 #
274 # Assembler Objects
275
276 ifneq (,$(findstring 86,$(ARCH)))
277 ifneq (,$(findstring mmx,$(ARCH)))
278 ASM_OBJ =               
279 endif
280 endif
281
282 #
283 # Plugins
284 #
285 PLUGIN_ALSA =   plugins/alsa/alsa.o \
286                 plugins/alsa/aout_alsa.o
287
288 PLUGIN_BEOS =   plugins/beos/beos.o \
289                 plugins/beos/aout_beos.o \
290                 plugins/beos/intf_beos.o \
291                 plugins/beos/vout_beos.o
292
293 PLUGIN_DSP =    plugins/dsp/dsp.o \
294                 plugins/dsp/aout_dsp.o
295
296 PLUGIN_DUMMY =  plugins/dummy/dummy.o \
297                 plugins/dummy/aout_dummy.o \
298                 plugins/dummy/intf_dummy.o \
299                 plugins/dummy/vout_dummy.o
300
301 PLUGIN_DVD =    plugins/dvd/dvd.o \
302                 plugins/dvd/input_dvd.o \
303                 plugins/dvd/dvd_ioctl.o \
304                 plugins/dvd/dvd_ifo.o \
305                 plugins/dvd/dvd_udf.o \
306                 plugins/dvd/dvd_css.o
307
308 PLUGIN_ESD =    plugins/esd/esd.o \
309                 plugins/esd/aout_esd.o
310
311 PLUGIN_FB =     plugins/fb/fb.o \
312                 plugins/fb/vout_fb.o
313
314 PLUGIN_GGI =    plugins/ggi/ggi.o \
315                 plugins/ggi/vout_ggi.o
316
317 PLUGIN_GLIDE =  plugins/glide/glide.o \
318                 plugins/glide/vout_glide.o
319
320 PLUGIN_GTK =    plugins/gtk/gtk.o \
321                 plugins/gtk/intf_gtk.o \
322                 plugins/gtk/gtk_callbacks.o \
323                 plugins/gtk/gtk_interface.o \
324                 plugins/gtk/gtk_support.o
325
326 PLUGIN_GNOME =  plugins/gnome/gnome.o \
327                 plugins/gnome/intf_gnome.o \
328                 plugins/gnome/gnome_callbacks.o \
329                 plugins/gnome/gnome_interface.o \
330                 plugins/gnome/gnome_support.o
331
332 PLUGIN_KDE =    plugins/kde/kde.o \
333                 plugins/kde/intf_kde.o \
334                 plugins/kde/kvlc.o
335
336 PLUGIN_IDCT =   plugins/idct/idct.o \
337                 plugins/idct/idct_common.o
338
339 PLUGIN_IDCTCLASSIC =    plugins/idct/idctclassic.o \
340                         plugins/idct/idct_common.o
341
342 PLUGIN_IDCTMMX =        plugins/idct/idctmmx.o \
343                         plugins/idct/idct_common.o
344
345 PLUGIN_IDCTMMXEXT =     plugins/idct/idctmmxext.o \
346                         plugins/idct/idct_common.o
347
348 PLUGIN_MGA =    plugins/mga/mga.o \
349                 plugins/mga/vout_mga.o
350
351 PLUGIN_MOTION = plugins/motion/motion.o \
352                 plugins/motion/vdec_motion_common.o \
353                 plugins/motion/vdec_motion_inner.o
354
355 PLUGIN_MOTIONMMX =      plugins/motion/motionmmx.o \
356                         plugins/motion/vdec_motion_common.o \
357                         plugins/motion/vdec_motion_inner_mmx.o
358
359 PLUGIN_MOTIONMMXEXT =   plugins/motion/motionmmxext.o \
360                         plugins/motion/vdec_motion_common.o \
361                         plugins/motion/vdec_motion_inner_mmxext.o
362
363 PLUGIN_NCURSES =        plugins/text/ncurses.o \
364                         plugins/text/intf_ncurses.o
365
366 PLUGIN_NULL =   plugins/null/null.o
367
368 PLUGIN_PS =     plugins/mpeg/ps.o \
369                 plugins/mpeg/input_ps.o
370
371 PLUGIN_SDL =    plugins/sdl/sdl.o \
372                 plugins/sdl/vout_sdl.o \
373                 plugins/sdl/aout_sdl.o 
374
375 PLUGIN_TS =     plugins/mpeg/ts.o \
376                 plugins/mpeg/input_ts.o
377
378 PLUGIN_X11=     plugins/x11/x11.o \
379                 plugins/x11/vout_x11.o
380
381 PLUGIN_YUV =    plugins/yuv/yuv.o \
382                 plugins/yuv/video_yuv.o \
383                 plugins/yuv/transforms_yuv.o
384
385 PLUGIN_YUVMMX = plugins/yuv/yuvmmx.o \
386                 plugins/yuv/video_yuvmmx.o \
387                 plugins/yuv/transforms_yuvmmx.o
388
389 STD_PLUGIN_OBJ = \
390                 $(PLUGIN_ALSA) \
391                 $(PLUGIN_DSP) \
392                 $(PLUGIN_DUMMY) \
393                 $(PLUGIN_DVD) \
394                 $(PLUGIN_ESD) \
395                 $(PLUGIN_FB) \
396                 $(PLUGIN_GGI) \
397                 $(PLUGIN_IDCT) \
398                 $(PLUGIN_IDCTCLASSIC) \
399                 $(PLUGIN_IDCTMMX) \
400                 $(PLUGIN_IDCTMMXEXT) \
401                 $(PLUGIN_MGA) \
402                 $(PLUGIN_MOTION) \
403                 $(PLUGIN_MOTIONMMX) \
404                 $(PLUGIN_MOTIONMMXEXT) \
405                 $(PLUGIN_NCURSES) \
406                 $(PLUGIN_NULL) \
407                 $(PLUGIN_PS) \
408                 $(PLUGIN_SDL) \
409                 $(PLUGIN_TS) \
410                 $(PLUGIN_X11) \
411                 $(PLUGIN_YUV) \
412                 $(PLUGIN_YUVMMX)
413
414 # list duplicates
415 STD_PLUGIN_COMMON =     plugins/idct/idct_common.o \
416                         plugins/motion/vdec_motion_common.o
417
418 # filter out duplicates from the plugin object lists
419 STD_PLUGIN_OBJ :=       $(filter-out $(STD_PLUGIN_COMMON), \
420                                  $(STD_PLUGIN_OBJ)) $(STD_PLUGIN_COMMON)
421
422 NONSTD_PLUGIN_OBJ = \
423                 $(PLUGIN_GLIDE) \
424                 $(PLUGIN_GTK) \
425                 $(PLUGIN_GNOME)
426
427 NONSTD_CPP_PLUGIN_OBJ = \
428                 $(PLUGIN_BEOS) \
429                 $(PLUGIN_KDE)
430
431 #
432 # Other lists of files
433 #
434 objects := $(C_OBJ) $(ASM_OBJ) $(STD_PLUGIN_OBJ) $(NONSTD_PLUGIN_OBJ)
435 cdependancies := $(objects:%.o=.dep/%.d)
436 cppobjects := $(CPP_OBJ) $(NONSTD_CPP_PLUGIN_OBJ)
437 cppdependancies := $(cppobjects:%.o=.dep/%.dpp)
438
439 # All symbols must be exported
440 export
441
442 ################################################################################
443 # Targets
444 ################################################################################
445
446 #
447 # Virtual targets
448 #
449 all: vlc @ALIASES@ plugins
450
451 clean:
452         rm -f $(C_OBJ) $(CPP_OBJ) $(ASM_OBJ) $(STD_PLUGIN_OBJ)
453         rm -f plugins/*/*.o src/*/*.o lib/*.so
454         rm -f vlc @ALIASES@
455
456 distclean: clean
457         rm -f src/*/*.o plugins/*/*.o **/*~ *.log
458         rm -f Makefile include/defs.h include/config.h
459         rm -f config.status config.cache config.log
460         rm -f gmon.out core build-stamp
461         rm -rf .dep
462
463 install:
464         mkdir -p $(DESTDIR)$(bindir)
465         $(INSTALL) vlc $(DESTDIR)$(bindir)
466 # ugly
467         for alias in "" @ALIASES@ ; do if test $$alias ; then rm -f $(DESTDIR)$(bindir)/$$alias && ln -s vlc $(DESTDIR)$(bindir)/$$alias ; fi ; done
468         mkdir -p $(DESTDIR)$(libdir)/videolan/vlc
469         $(INSTALL) -m 644 $(PLUGINS:%=lib/%.so) $(DESTDIR)$(libdir)/videolan/vlc
470         mkdir -p $(DESTDIR)$(datadir)/videolan
471         $(INSTALL) -m 644 share/*.psf $(DESTDIR)$(datadir)/videolan
472         $(INSTALL) -m 644 share/*.png $(DESTDIR)$(datadir)/videolan
473
474 show:
475         @echo CC: $(CC)
476         @echo CFLAGS: $(CFLAGS)
477         @echo DCFLAGS: $(DCFLAGS)
478         @echo LCFLAGS: $(LCFLAGS)
479         @echo C_OBJ: $(C_OBJ)
480         @echo CPP_OBJ: $(CPP_OBJ)
481         @echo STD_PLUGIN_OBJ: $(STD_PLUGIN_OBJ)
482         @echo NONSTD_PLUGIN_OBJ: $(NONSTD_PLUGIN_OBJ)
483         @echo NONSTD_CPP_PLUGIN_OBJ: $(NONSTD_CPP_PLUGIN_OBJ)
484         @echo objects: $(objects)
485         @echo cppobjects: $(cppobjects)
486
487 # ugliest of all, but I have no time to do it -- sam
488 snapshot:
489         rm -rf /tmp/vlc-@VLC_VERSION@ /tmp/vlc-@VLC_VERSION@nocss
490         # copy archive in /tmp
491         find -type d | while read i ; \
492                 do mkdir -p /tmp/vlc-@VLC_VERSION@/$$i ; \
493         done
494         find debian -mindepth 1 -maxdepth 1 -type d | grep -v CVS | \
495                 while read i ; do rm -rf /tmp/vlc-@VLC_VERSION@/$$i ; done
496         # CVS entries
497         find . -type f | grep CVS | while read i ; \
498                 do cp $$i /tmp/vlc-@VLC_VERSION@/$$i ; \
499         done
500         # .c .h .in .cpp
501         find include src plugins -type f -name '*.[chi]*' | while read i ; \
502                 do cp $$i /tmp/vlc-@VLC_VERSION@/$$i ; \
503         done
504         # copy misc files
505         cp vlc.spec AUTHORS COPYING ChangeLog CONTRIBUTORS INSTALL README TODO \
506                 Makefile.in Makefile.dep configure configure.in install-sh \
507                 config.sub config.guess todo.pl \
508                         /tmp/vlc-@VLC_VERSION@/
509         for file in control vlc-gnome.menu vlc.copyright vlc.docs changelog \
510                 rules vlc.1 vlc.dirs vlc.menu ; do \
511                         cp debian/$$file /tmp/vlc-@VLC_VERSION@/debian/ ; done
512         for file in default8x16.psf default8x9.psf gvlc.png vlc.png ; do \
513                 cp share/$$file /tmp/vlc-@VLC_VERSION@/share/ ; done
514
515         # build css-enabled archives
516         (cd /tmp ; tar cf vlc-@VLC_VERSION@.tar vlc-@VLC_VERSION@ ; \
517                 bzip2 -f -9 < vlc-@VLC_VERSION@.tar \
518                         > vlc-@VLC_VERSION@.tar.bz2 ; \
519                 gzip -f -9 vlc-@VLC_VERSION@.tar )
520         mv /tmp/vlc-@VLC_VERSION@.tar.gz /tmp/vlc-@VLC_VERSION@.tar.bz2 ..
521
522         # removing CSS stuff
523 #       find /tmp/vlc-@VLC_VERSION@ -type f -name '*css*' | xargs rm -f
524 #       for x in Makefile.in src/input/input_dvd.c src/input/input_dvd.h ; do \
525 #       rm -f /tmp/vlc-@VLC_VERSION@/$$x ; \
526 #       perl -ne 'if (/^#e(lse|ndif)/) { $$i=0; } \
527 #                       if (/^#if.*DVD/) { $$i=1; print "#if 0\n"; } \
528 #                       elsif (!$$i || /^#/) { print $$_; }' \
529 #               < $$x | grep -vi css >| /tmp/vlc-@VLC_VERSION@/$$x ; \
530 #       done
531 #       rm -f /tmp/vlc-@VLC_VERSION@/debian/changelog
532 #       sed 's/\(^vlc ([^-]*\)-/\1nocss-/' < debian/changelog \
533 #               > /tmp/vlc-@VLC_VERSION@/debian/changelog
534 #
535 #       # build nocss archives
536 #       (cd /tmp ; mv vlc-@VLC_VERSION@ vlc-@VLC_VERSION@nocss ; \
537 #               tar cf vlc-@VLC_VERSION@nocss.tar vlc-@VLC_VERSION@nocss ; \
538 #               bzip2 -f -9 < vlc-@VLC_VERSION@nocss.tar \
539 #                       > vlc-@VLC_VERSION@nocss.tar.bz2 ; \
540 #               gzip -f -9 vlc-@VLC_VERSION@nocss.tar )
541 #       mv /tmp/vlc-@VLC_VERSION@nocss.tar.gz \
542 #               /tmp/vlc-@VLC_VERSION@nocss.tar.bz2 ..
543 #
544 #       # clean up
545         rm -rf /tmp/vlc-@VLC_VERSION@*
546
547 plugins: $(PLUGINS:%=lib/%.so)
548
549 FORCE:
550
551 #
552 # GTK/Gnome and Framebuffer aliases - don't add new aliases which could bloat
553 # the namespace
554 #
555 gvlc kvlc: vlc
556         rm -f $@ && ln -s vlc $@
557
558
559 #
560 # Generic rules (see below)
561 #
562 $(cdependancies): %.d: FORCE
563         @$(MAKE) -s --no-print-directory -f Makefile.dep $@
564
565 $(cppdependancies): %.dpp: FORCE
566         @$(MAKE) -s --no-print-directory -f Makefile.dep $@
567
568 $(C_OBJ): %.o: Makefile.dep
569 $(C_OBJ): %.o: .dep/%.d
570 $(C_OBJ): %.o: %.c
571         $(CC) $(CFLAGS) -c -o $@ $<
572
573 $(CPP_OBJ): %.o: Makefile.dep
574 $(CPP_OBJ): %.o: .dep/%.dpp
575 $(CPP_OBJ): %.o: %.cpp
576         $(CC) $(CFLAGS) -c -o $@ $<
577
578 $(ASM_OBJ): %.o: Makefile.dep
579 $(ASM_OBJ): %.o: %.S
580         $(CC) $(CFLAGS) -c -o $@ $<
581
582 $(STD_PLUGIN_OBJ): %.o: Makefile.dep
583 $(STD_PLUGIN_OBJ): %.o: .dep/%.d
584 $(STD_PLUGIN_OBJ): %.o: %.c
585         $(CC) $(CFLAGS) $(PCFLAGS) -c -o $@ $<
586
587 $(PLUGIN_GTK): %.o: Makefile.dep
588 $(PLUGIN_GTK): %.o: .dep/%.d
589 $(PLUGIN_GTK): %.o: %.c
590         $(CC) $(CFLAGS) $(PCFLAGS) `gtk-config --cflags gtk` -c -o $@ $<
591
592 $(PLUGIN_GNOME): %.o: Makefile.dep
593 $(PLUGIN_GNOME): %.o: .dep/%.d
594 $(PLUGIN_GNOME): %.o: %.c
595         $(CC) $(CFLAGS) $(PCFLAGS) `gnome-config --cflags gnomeui` -c -o $@ $<
596
597 $(PLUGIN_GLIDE): %.o: Makefile.dep
598 $(PLUGIN_GLIDE): %.o: .dep/%.d
599 $(PLUGIN_GLIDE): %.o: %.c
600         $(CC) $(CFLAGS) $(PCFLAGS) -I/usr/include/glide -c -o $@ $<
601
602 $(PLUGIN_KDE): %.o: Makefile.dep
603 $(PLUGIN_KDE): %.o: .dep/%.dpp
604 $(PLUGIN_KDE): %.o: %.cpp
605         $(CC) $(CFLAGS) $(PCFLAGS) -I/usr/include/kde -I/usr/include/qt -fno-rtti -c -o $@ $<
606
607 $(PLUGIN_BEOS): %.o: Makefile.dep
608 $(PLUGIN_BEOS): %.o: .dep/%.dpp
609 $(PLUGIN_BEOS): %.o: %.cpp
610         $(CC) $(CFLAGS) $(PCFLAGS) -c -o $@ $<
611
612 #
613 # Main application target
614 #
615
616 vlc: $(C_OBJ) $(CPP_OBJ) $(ASM_OBJ)
617 ifeq ($(SYS),beos)
618         $(CC) $(CFLAGS) $(LCFLAGS) -Xlinker -soname=_APP_ -o $@ $(C_OBJ) $(CPP_OBJ) $(ASM_OBJ)
619         rm -f ./plugins/_APP_
620         ln -s ../vlc ./plugins/_APP_
621 else
622         $(CC) $(CFLAGS) $(LCFLAGS) --export-dynamic @DYNAMIC_FLAG@ -o $@ $(C_OBJ) $(CPP_OBJ) $(ASM_OBJ) 
623 endif
624
625 #
626 # Plugin targets
627 #
628
629 lib/beos.so: $(PLUGIN_BEOS)
630         $(CC) $(PCFLAGS) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_ -lbe -lgame -lroot
631
632 lib/esd.so: $(PLUGIN_ESD)
633 ifneq (,$(findstring bsd,$(SYS)))
634         $(CC) $(PCFLAGS) -shared -o $@ $^ -lesd
635 else
636         $(CC) $(PCFLAGS) -shared -o $@ $^ -laudiofile -lesd
637 endif
638
639 lib/dsp.so: $(PLUGIN_DSP)
640         $(CC) $(PCFLAGS) -shared -o $@ $^
641
642 lib/kde.so: $(PLUGIN_KDE)
643         $(CC) $(PCFLAGS) -shared -o $@ $^ -lkdeui -lkdecore -lqt -ldl
644
645 lib/alsa.so: $(PLUGIN_ALSA)
646         $(CC) $(PCFLAGS) -shared -o $@ $^ -lasound
647
648 lib/fb.so: $(PLUGIN_FB)
649         $(CC) $(PCFLAGS) -shared -o $@ $^
650
651 lib/x11.so: $(PLUGIN_X11)
652         $(CC) $(PCFLAGS) -shared -o $@ $^ -L/usr/X11R6/lib -lX11 -lXext
653
654 lib/mga.so: $(PLUGIN_MGA)
655         $(CC) $(PCFLAGS) -shared -o $@ $^ -L/usr/X11R6/lib -lX11 -lXext
656
657 lib/gtk.so: $(PLUGIN_GTK)
658         $(CC) $(PCFLAGS) -shared -o $@ $^ `gtk-config --libs gtk | sed 's,-rdynamic,,'`
659
660 lib/gnome.so: $(PLUGIN_GNOME)
661         $(CC) $(PCFLAGS) -shared -o $@ $^ `gnome-config --libs gnomeui | sed 's,-rdynamic,,'`
662
663 lib/glide.so: $(PLUGIN_GLIDE)
664         $(CC) $(PCFLAGS) -shared -o $@ $^ $(LIB_GLIDE)
665
666 lib/ggi.so: $(PLUGIN_GGI)
667         $(CC) $(PCFLAGS) -shared -o $@ $^ $(LIB_GGI)
668
669 lib/sdl.so: $(PLUGIN_SDL)
670         $(CC) $(PCFLAGS) -shared -o $@ $^ $(LIB_SDL)
671
672 lib/ncurses.so: $(PLUGIN_NCURSES)
673         $(CC) $(PCFLAGS) -shared -o $@ $^ -lncurses
674
675 ifeq ($(SYS),beos)
676 lib/null.so: $(PLUGIN_NULL)
677         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
678
679 lib/ps.so: $(PLUGIN_PS)
680         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
681
682 lib/ts.so: $(PLUGIN_TS)
683         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
684
685 lib/dvd.so: $(PLUGIN_DVD)
686         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
687
688 lib/dummy.so: $(PLUGIN_DUMMY)
689         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
690
691 lib/yuv.so: $(PLUGIN_YUV)
692         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
693
694 lib/yuvmmx.so: $(PLUGIN_YUVMMX)
695         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
696
697 lib/motion.so: $(PLUGIN_MOTION)
698         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
699
700 lib/motionmmx.so: $(PLUGIN_MOTIONMMX)
701         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
702
703 lib/motionmmxext.so: $(PLUGIN_MOTIONMMXEXT)
704         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
705
706 lib/idct.so: $(PLUGIN_IDCT)
707         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
708
709 lib/idctclassic.so: $(PLUGIN_IDCTCLASSIC)
710         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
711
712 lib/idctmmx.so: $(PLUGIN_IDCTMMX)
713         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
714
715 lib/idctmmxext.so: $(PLUGIN_IDCTMMXEXT)
716         $(CC) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
717 else
718 lib/null.so: $(PLUGIN_NULL)
719         $(CC) $(PCFLAGS) -shared -o $@ $^
720
721 lib/ps.so: $(PLUGIN_PS)
722         $(CC) $(PCFLAGS) -shared -o $@ $^
723
724 lib/ts.so: $(PLUGIN_TS)
725         $(CC) $(PCFLAGS) -shared -o $@ $^
726
727 lib/dvd.so: $(PLUGIN_DVD)
728         $(CC) $(PCFLAGS) -shared -o $@ $^
729
730 lib/dummy.so: $(PLUGIN_DUMMY)
731         $(CC) $(PCFLAGS) -shared -o $@ $^
732
733 lib/yuv.so: $(PLUGIN_YUV)
734         $(CC) $(PCFLAGS) -shared -o $@ $^
735
736 lib/yuvmmx.so: $(PLUGIN_YUVMMX)
737         $(CC) $(PCFLAGS) -shared -o $@ $^
738
739 lib/motion.so: $(PLUGIN_MOTION)
740         $(CC) $(PCFLAGS) -shared -o $@ $^
741
742 lib/motionmmx.so: $(PLUGIN_MOTIONMMX)
743         $(CC) $(PCFLAGS) -shared -o $@ $^
744
745 lib/motionmmxext.so: $(PLUGIN_MOTIONMMXEXT)
746         $(CC) $(PCFLAGS) -shared -o $@ $^
747
748 lib/idct.so: $(PLUGIN_IDCT)
749         $(CC) $(PCFLAGS) -shared -o $@ $^
750
751 lib/idctclassic.so: $(PLUGIN_IDCTCLASSIC)
752         $(CC) $(PCFLAGS) -shared -o $@ $^
753
754 lib/idctmmx.so: $(PLUGIN_IDCTMMX)
755         $(CC) $(PCFLAGS) -shared -o $@ $^
756
757 lib/idctmmxext.so: $(PLUGIN_IDCTMMXEXT)
758         $(CC) $(PCFLAGS) -shared -o $@ $^
759 endif
760
761 ################################################################################
762 # Note on generic rules and dependancies
763 ################################################################################
764
765 # Note on dependancies: each .c file is associated with a .d file, which
766 # depends of it. The .o file associated with a .c file depends of the .d, of the
767 # .c itself, and of Makefile. The .d files are stored in a separate .dep/
768 # directory.
769 # The dep directory should be ignored by CVS.
770
771 # Note on inclusions: depending of the target, the dependancies files must
772 # or must not be included. The problem is that if we ask make to include a file,
773 # and this file does not exist, it is made before it can be included. In a
774 # general way, a .d file should be included if and only if the corresponding .o
775 # needs to be re-made.
776
777 # Two makefiles are used: the main one (this one) has regular generic rules,
778 # except for .o files, for which it calls the object Makefile. Dependancies
779 # are not included in this file.
780 # The object Makefile known how to make a .o from a .c, and includes
781 # dependancies for the target, but only those required.