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