]> git.sesse.net Git - vlc/blob - Makefile
* Makefile : ajout du nouveau d�codeur (comment�) ;
[vlc] / Makefile
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 #CC = gcc
13 #SHELL = /bin/sh
14
15 ################################################################################
16 # Settings and other variables
17 ################################################################################
18
19 #
20 # C headers directories
21 #
22 INCLUDE += -Iinclude
23 INCLUDE += -I/usr/X11R6/include/X11
24
25 #
26 # Libraries
27 #
28 LIB += -L/usr/X11R6/lib
29 LIB += -lX11
30 LIB += -lXext 
31 LIB += -lpthread
32 LIB += -lXpm
33
34 #
35 # C compiler flags: compilation
36 #
37 CCFLAGS += $(INCLUDE)
38 CCFLAGS += -Wall
39 CCFLAGS += -D_REENTRANT
40 CCFLAGS += -D_GNU_SOURCE
41
42 # Optimizations : don't compile debug versions with them
43 CCFLAGS += -O6
44 CCFLAGS += -ffast-math -funroll-loops -fargument-noalias-global
45 #CCFLAGS += -fomit-frame-pointer -s
46 #LCFLAGS += -s
47
48 # Platform-specific optimizations
49 # Optimizations for x86 familiy :
50 CCFLAGS += -malign-double
51 CCFLAGS += -march=pentiumpro
52 #CCFLAGS += -march=pentium
53
54 # MMX support :
55 CFLAGS += -DHAVE_MMX
56 ASM_OBJ =   video_decoder_ref/idctmmx.o \
57                     video_decoder_ref/yuv12-rgb16.o
58
59 #Optimizations for PowerPC :
60 #CCFLAGS += -mcpu=604e -mmultiple -mhard-float -mstring
61
62 #
63 # C compiler flags: dependancies
64 #
65 DCFLAGS += $(INCLUDE)
66 DCFLAGS += -MM
67
68 #
69 # C compiler flags: linking
70 #
71 LCFLAGS += $(LIB)
72 LCFLAGS += -Wall
73
74 #
75 # C compiler flags: functions flow
76 #
77 FCFLAGS += $(INCLUDE)
78 FCFLAGS += -A
79 FCFLAGS += -P
80 FCFLAGS += -v
81 FCFLAGS += -a
82 FCFLAGS += -X errno.h
83 FCFLAGS += -X fcntl.h
84 FCFLAGS += -X signal.h
85 FCFLAGS += -X stdio.h
86 FCFLAGS += -X stdlib.h
87 FCFLAGS += -X string.h
88 FCFLAGS += -X unistd.h
89 FCFLAGS += -X sys/ioctl.h
90 FCFLAGS += -X sys/stat.h
91 FCFLAGS += -X X11/Xlib.h
92 FFILTER = grep -v "intf_.*Msg.*\.\.\."
93
94 #
95 # C compiler flags: common flags
96 #
97 # CFLAGS
98
99 #
100 # Additionnal debugging flags
101 #
102 # Debugging settings: electric fence, debuging symbols and profiling support. 
103 # Note that electric fence and accurate profiling are quite uncompatible.
104 #CCFLAGS += -g
105 #CCFLAGS += -pg
106 #LCFLAGS += -g
107 #LCFLAGS += -pg
108 #LIB += -ldmalloc
109 #LIB += -lefence
110
111 #################################################################################
112 # Objects and files
113 #################################################################################
114
115 #
116 # Objects
117
118 interface_obj =                 interface/main.o \
119                                                 interface/interface.o \
120                                                 interface/intf_msg.o \
121                                                 interface/intf_cmd.o \
122                                                 interface/intf_ctrl.o \
123                                                 interface/control.o \
124                                                 interface/xconsole.o 
125
126 input_obj =                     input/input_vlan.o \
127                                                 input/input_file.o \
128                                                 input/input_netlist.o \
129                                                 input/input_network.o \
130                                                 input/input_ctrl.o \
131                                                 input/input_pcr.o \
132                                                 input/input_psi.o \
133                                                 input/input.o
134
135 audio_output_obj =              audio_output/audio_output.o \
136                                                 audio_output/audio_dsp.o
137
138 #video_output_obj =             video_output/video_output.o \
139 #                                               video_output/video_x11.o \
140 #                                               video_output/video_graphics.o 
141
142 audio_decoder_obj =             audio_decoder/audio_decoder.o \
143                                                 audio_decoder/audio_math.o
144
145 #generic_decoder_obj =          generic_decoder/generic_decoder.o
146
147 video_decoder_obj =             video_decoder_ref/video_decoder.o \
148                                                 video_decoder_ref/display.o \
149                                                 video_decoder_ref/getblk.o \
150                                                 video_decoder_ref/gethdr.o \
151                                                 video_decoder_ref/getpic.o \
152                                                 video_decoder_ref/getvlc.o \
153                                                 video_decoder_ref/idct.o \
154                                                 video_decoder_ref/motion.o \
155                                                 video_decoder_ref/mpeg2dec.o \
156                                                 video_decoder_ref/recon.o \
157                                                 video_decoder_ref/spatscal.o
158
159 #video_parser_obj =             video_parser/video_parser.o \
160 #                                               video_parser/vpar_headers.o \
161 #                                               video_parser/vpar_blocks.o \
162 #                                               video_parser/vpar_motion.o \
163 #                                               video_parser/vpar_synchro.o \
164 #                                               video_parser/video_fifo.o
165
166 #video_decoder_obj =            video_decoder/video_decoder.o \
167 #                                               video_decoder/vdec_idct.o \
168 #                                               video_decoder/vdec_motion.o
169
170 misc_obj =                      misc/mtime.o \
171                                                 misc/xutils.o \
172                                                 misc/rsc_files.o \
173                                                 misc/netutils.o
174
175 C_OBJ = $(interface_obj) \
176                 $(input_obj) \
177                 $(audio_output_obj) \
178                 $(video_output_obj) \
179                 $(audio_decoder_obj) \
180                 $(generic_decoder_obj) \
181                 $(video_parser_obj) \
182                 $(video_decoder_obj) \
183                 $(vlan_obj) \
184                 $(misc_obj) \
185
186 #
187 # Other lists of files
188 #
189 sources := $(C_OBJ:%.o=%.c)
190 dependancies := $(sources:%.c=dep/%.d)
191
192 # All symbols must be exported
193 export
194
195 ################################################################################
196 # Targets
197 ################################################################################
198
199 #
200 # Virtual targets
201 #
202 all: vlc
203
204 clean:
205         rm -f $(C_OBJ) $(ASM_OBJ)
206
207 distclean: clean
208         rm -f **/*.o **/*~ *.log
209         rm -f vlc gmon.out core Documentation/cflow
210         rm -rf dep
211
212 FORCE:
213
214 #
215 # Real targets
216 #
217 vlc: $(C_OBJ) $(ASM_OBJ)
218         $(CC) $(LCFLAGS) $(CFLAGS) -o $@ $(C_OBJ) $(ASM_OBJ)
219
220 Documentation/cflow: $(sources)
221         cflow $(FCFLAGS) $(CFLAGS) $(sources) | $(FFILTER) > $@
222
223 #
224 # Generic rules (see below)
225 #
226 $(dependancies): %.d: FORCE
227         @make -s --no-print-directory -f Makefile.dep $@
228
229 $(C_OBJ): %.o: dep/%.d
230
231 $(C_OBJ): %.o: %.c
232         $(CC) $(CCFLAGS) $(CFLAGS) -c -o $@ $<
233 $(ASM_OBJ): %.o: %.S
234         $(CC) -c -o $@ $<
235
236 ################################################################################
237 # Note on generic rules and dependancies
238 ################################################################################
239
240 # Note on dependancies: each .c file is associated with a .d file, which
241 # depends of it. The .o file associated with a .c file depends of the .d, of the 
242 # .c itself, and of Makefile. The .d files are stored in a separate dep/ 
243 # directory.
244 # The dep directory should be ignored by CVS.
245
246 # Note on inclusions: depending of the target, the dependancies files must 
247 # or must not be included. The problem is that if we ask make to include a file,
248 # and this file does not exist, it is made before it can be included. In a 
249 # general way, a .d file should be included if and only if the corresponding .o 
250 # needs to be re-made.
251
252 # Two makefiles are used: the main one (this one) has regular generic rules,
253 # except for .o files, for which it calls the object Makefile. Dependancies
254 # are not included in this file.
255 # The object Makefile known how to make a .o from a .c, and includes
256 # dependancies for the target, but only those required.