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