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