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