]> git.sesse.net Git - vlc/blob - Makefile
* Makefile :
[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 += -O2
44 #CCFLAGS += -O8
45 #CCFLAGS += -s -fargument-noalias-global -fexpensive-optimizations -ffast-math -funroll-loops -fomit-frame-pointer #-march=pentiumpro
46 #(Uncomment -march=pentiumpro if it applies)
47
48
49 #
50 # C compiler flags: dependancies
51 #
52 DCFLAGS += $(INCLUDE)
53 DCFLAGS += -MM
54
55 #
56 # C compiler flags: linking
57 #
58 LCFLAGS += $(LIB)
59 LCFLAGS += -Wall
60
61 #
62 # C compiler flags: functions flow
63 #
64 FCFLAGS += $(INCLUDE)
65 FCFLAGS += -A
66 FCFLAGS += -P
67 FCFLAGS += -v
68 FCFLAGS += -a
69 FCFLAGS += -X errno.h
70 FCFLAGS += -X fcntl.h
71 FCFLAGS += -X signal.h
72 FCFLAGS += -X stdio.h
73 FCFLAGS += -X stdlib.h
74 FCFLAGS += -X string.h
75 FCFLAGS += -X unistd.h
76 FCFLAGS += -X sys/ioctl.h
77 FCFLAGS += -X sys/stat.h
78 FCFLAGS += -X X11/Xlib.h
79 FFILTER = grep -v "intf_.*Msg.*\.\.\."
80
81 #
82 # C compiler flags: common flags
83 #
84 # CFLAGS
85
86 #
87 # Additionnal debugging flags
88 #
89 # Debugging settings: electric fence, debuging symbols and profiling support. 
90 # Note that electric fence and accurate profiling are quite uncompatible.
91 CCFLAGS += -g
92 CCFLAGS += -pg
93 #LIB += -ldmalloc
94 #LIB += -lefence
95
96 #################################################################################
97 # Objects and files
98 #################################################################################
99
100 #
101 # Objects
102
103 interface_obj =                 interface/main.o \
104                                                 interface/interface.o \
105                                                 interface/intf_msg.o \
106                                                 interface/intf_cmd.o \
107                                                 interface/intf_ctrl.o \
108                                                 interface/control.o \
109                                                 interface/xconsole.o 
110
111 input_obj =                     input/input_vlan.o \
112                                                 input/input_file.o \
113                                                 input/input_netlist.o \
114                                                 input/input_network.o \
115                                                 input/input_ctrl.o \
116                                                 input/input_pcr.o \
117                                                 input/input_psi.o \
118                                                 input/input.o
119
120 audio_output_obj =              audio_output/audio_output.o \
121                                                 audio_output/audio_dsp.o
122
123 video_output_obj =              video_output/video_output.o \
124                                                 video_output/video_x11.o \
125                                                 video_output/video_graphics.o 
126
127 audio_decoder_obj =             audio_decoder/audio_decoder.o \
128                                                 audio_decoder/audio_math.o
129
130 generic_decoder_obj =           generic_decoder/generic_decoder.o
131
132 video_decoder_obj =             video_decoder/video_decoder.o
133
134 misc_obj =                      misc/mtime.o \
135                                                 misc/xutils.o \
136                                                 misc/rsc_files.o \
137                                                 misc/netutils.o
138
139 OBJ =   $(interface_obj) \
140                 $(input_obj) \
141                 $(audio_output_obj) \
142                 $(video_output_obj) \
143                 $(audio_decoder_obj) \
144                 $(generic_decoder_obj) \
145                 $(video_decoder_obj) \
146                 $(vlan_obj) \
147                 $(misc_obj)
148
149
150 #
151 # Other lists of files
152 #
153 sources := $(OBJ:%.o=%.c)
154 dependancies := $(sources:%.c=dep/%.d)
155
156 # All symbols must be exported
157 export
158
159 ################################################################################
160 # Targets
161 ################################################################################
162
163 #
164 # Virtual targets
165 #
166 all: vlc
167
168 clean:
169         rm -f $(OBJ)
170
171 distclean: clean
172         rm -f **/*.o **/*~ *.log
173         rm -f vlc gmon.out core Documentation/cflow
174         rm -rf dep
175
176 FORCE:
177
178 #
179 # Real targets
180 #
181 vlc: $(OBJ)
182         $(CC) $(LCFLAGS) $(CFLAGS) -o $@ $(OBJ)
183
184 Documentation/cflow: $(sources)
185         cflow $(FCFLAGS) $(CFLAGS) $(sources) | $(FFILTER) > $@
186
187 #
188 # Generic rules (see below)
189 #
190 $(dependancies): %.d: FORCE
191         @make -s --no-print-directory -f Makefile.dep $@
192
193 $(OBJ): %.o: dep/%.d
194 $(OBJ): %.o: %.c
195         $(CC) $(CCFLAGS) $(CFLAGS) -c -o $@ $<
196
197 ################################################################################
198 # Note on generic rules and dependancies
199 ################################################################################
200
201 # Note on dependancies: each .c file is associated with a .d file, which
202 # depends of it. The .o file associated with a .c file depends of the .d, of the 
203 # .c itself, and of Makefile. The .d files are stored in a separate dep/ 
204 # directory.
205 # The dep directory should be ignored by CVS.
206
207 # Note on inclusions: depending of the target, the dependancies files must 
208 # or must not be included. The problem is that if we ask make to include a file,
209 # and this file does not exist, it is made before it can be included. In a 
210 # general way, a .d file should be included if and only if the corresponding .o 
211 # needs to be re-made.
212
213 # Two makefiles are used: the main one (this one) has regular generic rules,
214 # except for .o files, for which it calls the object Makefile. Dependancies
215 # are not included in this file.
216 # The object Makefile known how to make a .o from a .c, and includes
217 # dependancies for the target, but only those required.