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