]> git.sesse.net Git - vlc/blob - Makefile.in
Fixed benny's mistakes :pp
[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.o
192
193 AUDIO_OUTPUT =  src/audio_output/audio_output.o
194
195 VIDEO_OUTPUT =  src/video_output/video_output.o \
196                 src/video_output/video_text.o \
197                 src/video_output/video_spu.o \
198                 src/video_output/video_yuv.o
199
200 AC3_DECODER =   src/ac3_decoder/ac3_decoder_thread.o \
201                 src/ac3_decoder/ac3_decoder.o \
202                 src/ac3_decoder/ac3_parse.o \
203                 src/ac3_decoder/ac3_exponent.o \
204                 src/ac3_decoder/ac3_bit_allocate.o \
205                 src/ac3_decoder/ac3_mantissa.o \
206                 src/ac3_decoder/ac3_rematrix.o \
207                 src/ac3_decoder/ac3_imdct.o \
208                 src/ac3_decoder/ac3_downmix.o
209
210 LPCM_DECODER =  src/lpcm_decoder/lpcm_decoder_thread.o \
211                 src/lpcm_decoder/lpcm_decoder.o
212
213 AUDIO_DECODER = src/audio_decoder/audio_decoder_thread.o \
214                 src/audio_decoder/audio_decoder.o \
215                 src/audio_decoder/audio_math.o
216
217 SPU_DECODER =   src/spu_decoder/spu_decoder.o
218
219 #GEN_DECODER =  src/generic_decoder/generic_decoder.o
220
221
222 VIDEO_PARSER =  src/video_parser/video_parser.o \
223                 src/video_parser/vpar_headers.o \
224                 src/video_parser/vpar_blocks.o \
225                 src/video_parser/vpar_synchro.o \
226                 src/video_parser/video_fifo.o
227
228 ifneq (,$(findstring mmx,$(ARCH)))
229         vdec_motion_inner = src/video_decoder/vdec_motion_inner_mmx.o
230 else
231         vdec_motion_inner = src/video_decoder/vdec_motion_inner.o
232 endif
233
234 VIDEO_DECODER = src/video_decoder/video_decoder.o \
235                 src/video_decoder/vdec_motion.o \
236                 src/video_decoder/vdec_idct.o \
237                 $(vdec_motion_inner)
238
239 MISC =          src/misc/mtime.o \
240                 src/misc/tests.o \
241                 src/misc/rsc_files.o \
242                 src/misc/netutils.o \
243                 src/misc/playlist.o \
244                 src/misc/plugins.o
245
246
247 C_OBJ =         $(INTERFACE) \
248                 $(INPUT) \
249                 $(VIDEO_OUTPUT) \
250                 $(AUDIO_OUTPUT) \
251                 $(AC3_DECODER) \
252                 $(LPCM_DECODER) \
253                 $(AUDIO_DECODER) \
254                 $(SPU_DEOCDER) \
255                 $(GEN_DECODER) \
256                 $(VIDEO_PARSER) \
257                 $(VIDEO_DECODER) \
258                 $(MISC)
259
260
261 #
262 # CPP Objects
263
264 ifeq ($(SYS),beos)
265 CPP_OBJ =       src/misc/beos_specific.o
266 endif
267
268 #
269 # Assembler Objects
270
271 ifneq (,$(findstring 86,$(ARCH)))
272 ifneq (,$(findstring mmx,$(ARCH)))
273 ASM_OBJ =       src/video_decoder/vdec_idctmmx.o \
274                 src/video_output/video_yuv_mmx.o
275 endif
276 endif
277
278 #
279 # Plugins
280 #
281 PLUGIN_BEOS =   plugins/beos/beos.o \
282                 plugins/beos/aout_beos.o \
283                 plugins/beos/intf_beos.o \
284                 plugins/beos/vout_beos.o
285
286 PLUGIN_DSP =    plugins/dsp/dsp.o \
287                 plugins/dsp/aout_dsp.o \
288
289 PLUGIN_DUMMY =  plugins/dummy/dummy.o \
290                 plugins/dummy/aout_dummy.o \
291                 plugins/dummy/intf_dummy.o \
292                 plugins/dummy/vout_dummy.o
293
294 PLUGIN_ESD =    plugins/esd/esd.o \
295                 plugins/esd/aout_esd.o
296
297 PLUGIN_FB =     plugins/fb/fb.o \
298                 plugins/fb/intf_fb.o \
299                 plugins/fb/vout_fb.o
300
301 PLUGIN_GGI =    plugins/ggi/ggi.o \
302                 plugins/ggi/intf_ggi.o \
303                 plugins/ggi/vout_ggi.o
304
305 PLUGIN_SDL =    plugins/sdl/sdl.o \
306                 plugins/sdl/intf_sdl.o \
307                 plugins/sdl/vout_sdl.o 
308 #               plugins/sdl/video_yuv.o \
309 #               plugins/sdl/video_yuvall.o
310
311 PLUGIN_GLIDE =  plugins/glide/glide.o \
312                 plugins/glide/intf_glide.o \
313                 plugins/glide/vout_glide.o
314
315 PLUGIN_GNOME =  plugins/gnome/gnome.o \
316                 plugins/gnome/intf_gnome.o \
317                 plugins/gnome/intf_gnome_callbacks.o \
318                 plugins/gnome/intf_gnome_interface.o \
319                 plugins/gnome/intf_gnome_support.o \
320                 plugins/gnome/vout_gnome.o
321
322 PLUGIN_MGA =    plugins/mga/mga.o \
323                 plugins/mga/intf_mga.o \
324                 plugins/mga/vout_mga.o
325
326 PLUGIN_X11=     plugins/x11/x11.o \
327                 plugins/x11/intf_x11.o \
328                 plugins/x11/vout_x11.o
329
330 PLUGIN_YUV =    plugins/yuv/yuv.o \
331                 plugins/yuv/video_yuv.o \
332                 plugins/yuv/video_yuv8.o \
333                 plugins/yuv/video_yuv15.o \
334                 plugins/yuv/video_yuv16.o \
335                 plugins/yuv/video_yuv24.o \
336                 plugins/yuv/video_yuv32.o
337
338 PLUGIN_YUVMMX = plugins/yuvmmx/yuvmmx.o \
339                 plugins/yuvmmx/video_yuv.o \
340                 plugins/yuvmmx/video_yuv8.o \
341                 plugins/yuvmmx/video_yuv15.o \
342                 plugins/yuvmmx/video_yuv16.o \
343                 plugins/yuvmmx/video_yuv24.o \
344                 plugins/yuvmmx/video_yuv32.o
345
346 PLUGIN_ALSA =   plugins/alsa/alsa.o \
347                 plugins/alsa/aout_alsa.o
348
349 STD_PLUGIN_OBJ =$(PLUGIN_BEOS) \
350                 $(PLUGIN_DSP) \
351                 $(PLUGIN_DUMMY) \
352                 $(PLUGIN_ESD) \
353                 $(PLUGIN_FB) \
354                 $(PLUGIN_GGI) \
355                 $(PLUGIN_MGA) \
356                 $(PLUGIN_X11) \
357                 $(PLUGIN_YUV) \
358                 $(PLUGIN_YUVMMX) \
359                 $(PLUGIN_SDL) \
360                 $(PLUGIN_ALSA)
361
362 #
363 # Other lists of files
364 #
365 objects := $(C_OBJ) $(CPP_OBJ) $(ASM_OBJ) $(STD_PLUGIN_OBJ)
366 dependancies := $(objects:%.o=.dep/%.d)
367
368 # All symbols must be exported
369 export
370
371 ################################################################################
372 # Targets
373 ################################################################################
374
375 #
376 # Virtual targets
377 #
378 all: vlc @ALIASES@ plugins
379
380 clean:
381         rm -f $(C_OBJ) $(CPP_OBJ) $(ASM_OBJ) $(PLUGIN_OBJ)
382         rm -f vlc @ALIASES@ lib/*.so
383
384 distclean: clean
385         rm -f src/*/*.o plugins/*/*.o **/*~ *.log
386         rm -f Makefile include/defs.h include/config.h
387         rm -f config.status config.cache config.log
388         rm -f gmon.out core build-stamp
389         rm -rf .dep
390         rm -rf debian/tmp debian/files debian/*.debhelper debian/*.substvars
391         find debian/* -type d -maxdepth 0 -name 'vlc-*' | xargs rm -rf
392
393 install:
394         mkdir -p $(prefix)/bin
395         $(INSTALL) vlc $(prefix)/bin
396 # ugly
397         for alias in "" @ALIASES@ ; do if test $$alias ; then ln -s vlc $(prefix)/bin/$$alias ; fi ; done
398         mkdir -p $(prefix)/lib/videolan/vlc
399         $(INSTALL) -m 644 $(PLUGINS) $(prefix)/lib/videolan/vlc
400         mkdir -p $(prefix)/share/videolan
401         $(INSTALL) -m 644 share/*.psf $(prefix)/share/videolan
402         $(INSTALL) -m 644 share/*.png $(prefix)/share/videolan
403
404 show:
405         @echo CC: $(CC)
406         @echo CFLAGS: $(CFLAGS)
407         @echo DCFLAGS: $(DCFLAGS)
408         @echo LCFLAGS: $(LCFLAGS)
409
410 # ugliest of all, but I have no time to do it -- sam
411 snapshot:
412         rm -rf /tmp/${SNAPSHOTDIR}
413         mkdir /tmp/${SNAPSHOTDIR}
414         cp -a * /tmp/${SNAPSHOTDIR}
415                 (cd /tmp/${SNAPSHOTDIR} ; \
416                 make distclean ; \
417                 find . -type d -name CVS | xargs rm -rf ; \
418                 find . -type f -name '.*.swp' | xargs rm -f ; \
419                 find . -type f -name '.cvsignore' | xargs rm -f ; \
420                 cd .. ; \
421                 tar czvf ${SNAPSHOTDIR}.tar.gz ${SNAPSHOTDIR} ; \
422                 tar cIvf ${SNAPSHOTDIR}.tar.bz2 ${SNAPSHOTDIR} )
423         rm -rf /tmp/${SNAPSHOTDIR}
424         mv /tmp/${SNAPSHOTDIR}.tar.gz ..
425         mv /tmp/${SNAPSHOTDIR}.tar.bz2 ..
426         @echo "Sources are in ../${SNAPSHOTDIR}.tar.[gz,bz2]"
427
428 plugins: $(PLUGINS:%=lib/%.so)
429
430 FORCE:
431
432 #
433 # Gnome and Framebuffer aliases - don't add new aliases which could bloat
434 # the namespace
435 #
436 gvlc fbvlc: vlc
437         rm -f $@ && ln -s vlc $@
438
439
440 #
441 # Generic rules (see below)
442 #
443 $(dependancies): %.d: FORCE
444         @$(MAKE) -s --no-print-directory -f Makefile.dep $@
445
446 $(C_OBJ): %.o: Makefile.dep
447 $(C_OBJ): %.o: .dep/%.d
448 $(C_OBJ): %.o: %.c
449         $(CC) $(CFLAGS) -c -o $@ $<
450
451 $(CPP_OBJ): %.o: %.cpp
452         $(CC) $(CFLAGS) -c -o $@ $<
453
454 $(ASM_OBJ): %.o: Makefile.dep
455 $(ASM_OBJ): %.o: %.S
456         $(CC) $(CFLAGS) -c -o $@ $<
457
458 $(STD_PLUGIN_OBJ): %.o: Makefile.dep
459 $(STD_PLUGIN_OBJ): %.o: .dep/%.d
460 $(STD_PLUGIN_OBJ): %.o: %.c
461         $(CC) $(CFLAGS) $(PCFLAGS) -c -o $@ $<
462
463 $(PLUGIN_GNOME): %.o: Makefile.dep
464 $(PLUGIN_GNOME): %.o: %.c
465         $(CC) $(CFLAGS) `gnome-config --cflags gnomeui` -c -o $@ $<
466
467 $(PLUGIN_GLIDE): %.o: Makefile.dep
468 $(PLUGIN_GLIDE): %.o: %.c
469         $(CC) $(CFLAGS) -I/usr/include/glide -c -o $@ $<
470
471 #
472 # Real targets
473 #
474 vlc: $(C_OBJ) $(CPP_OBJ) $(ASM_OBJ)
475 ifeq ($(SYS),beos)
476         $(CC) $(CFLAGS) $(LCFLAGS) -Xlinker -soname=_APP_ -o $@ $(C_OBJ) $(CPP_OBJ) $(ASM_OBJ)
477         rm -f ./plugins/_APP_
478         ln -s ../vlc ./plugins/_APP_
479 else
480         $(CC) $(CFLAGS) $(LCFLAGS) --export-dynamic -rdynamic -o $@ $(C_OBJ) $(CPP_OBJ) $(ASM_OBJ)      
481 endif
482
483 lib/beos.so: $(PLUGIN_BEOS)
484         $(CC) $(CFLAGS) $(LCFLAGS) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
485
486 lib/esd.so: $(PLUGIN_ESD)
487 ifneq (,$(findstring bsd,$(SYS)))
488         $(CC) -shared -lesd -o $@ $^
489 else
490         $(CC) -shared -laudiofile -lesd -o $@ $^
491 endif
492
493 lib/dsp.so: $(PLUGIN_DSP)
494         $(CC) -shared -o $@ $^
495
496 lib/alsa.so: $(PLUGIN_ALSA)
497         $(CC) -shared -o $@ $^
498
499 lib/dummy.so: $(PLUGIN_DUMMY)
500         $(CC) -shared -o $@ $^
501
502 lib/fb.so: $(PLUGIN_FB)
503         $(CC) -shared -o $@ $^
504
505 lib/x11.so: $(PLUGIN_X11)
506         $(CC) -shared -L/usr/X11R6/lib -lX11 -lXext -o $@ $^
507
508 lib/mga.so: $(PLUGIN_MGA)
509         $(CC) -shared -L/usr/X11R6/lib -lX11 -lXext -o $@ $^
510
511 lib/gnome.so: $(PLUGIN_GNOME)
512         $(CC) -shared `gnome-config --libs gnomeui | sed 's,-rdynamic,,'` -o $@ $^
513
514 lib/glide.so: $(PLUGIN_GLIDE)
515         $(CC) -shared -lglide2x -o $@ $^
516
517 lib/ggi.so: $(PLUGIN_GGI)
518         $(CC) -shared -lggi -o $@ $^
519
520 lib/sdl.so: $(PLUGIN_SDL)
521         $(CC) -shared -lSDL -o $@ $^
522
523 lib/yuv.so: $(PLUGIN_YUV)
524 ifeq ($(SYS),beos)
525         $(CC) $(CFLAGS) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
526 else
527         $(CC) -shared -o $@ $^
528 endif
529
530 lib/yuvmmx.so: $(PLUGIN_YUVMMX)
531 ifeq ($(SYS),beos)
532         $(CC) $(CFLAGS) -nostart -Xlinker -soname=$@ -o $@ $^ plugins/_APP_
533 else
534         $(CC) $(LCFLAGS) -shared -o $@ $^
535 endif
536
537 ################################################################################
538 # Note on generic rules and dependancies
539 ################################################################################
540
541 # Note on dependancies: each .c file is associated with a .d file, which
542 # depends of it. The .o file associated with a .c file depends of the .d, of the
543 # .c itself, and of Makefile. The .d files are stored in a separate .dep/
544 # directory.
545 # The dep directory should be ignored by CVS.
546
547 # Note on inclusions: depending of the target, the dependancies files must
548 # or must not be included. The problem is that if we ask make to include a file,
549 # and this file does not exist, it is made before it can be included. In a
550 # general way, a .d file should be included if and only if the corresponding .o
551 # needs to be re-made.
552
553 # Two makefiles are used: the main one (this one) has regular generic rules,
554 # except for .o files, for which it calls the object Makefile. Dependancies
555 # are not included in this file.
556 # The object Makefile known how to make a .o from a .c, and includes
557 # dependancies for the target, but only those required.