Mercurial > mplayer.hg
comparison Makefile @ 4418:8141d2c399e4
A new configurable input system and joystick support for this system
author | albeu |
---|---|
date | Wed, 30 Jan 2002 12:46:03 +0000 |
parents | d45744794581 |
children | 3da8c5706371 |
comparison
equal
deleted
inserted
replaced
4417:4f507d28716d | 4418:8141d2c399e4 |
---|---|
51 ifeq ($(VIDIX),yes) | 51 ifeq ($(VIDIX),yes) |
52 MISC_LIBS += -Llibdha -ldha -Lvidix -lvidix | 52 MISC_LIBS += -Llibdha -ldha -Lvidix -lvidix |
53 endif | 53 endif |
54 CFLAGS = $(OPTFLAGS) -Ilibmpdemux -Iloader $(VO_INC) $(EXTRA_INC) # -Wall | 54 CFLAGS = $(OPTFLAGS) -Ilibmpdemux -Iloader $(VO_INC) $(EXTRA_INC) # -Wall |
55 | 55 |
56 PARTS = g72x libmpdemux mp3lib libac3 liba52 libmp1e libmpeg2 opendivx libavcodec libao2 drivers drivers/syncfb linux postproc xa | 56 PARTS = g72x libmpdemux mp3lib libac3 liba52 libmp1e libmpeg2 opendivx libavcodec libao2 drivers drivers/syncfb linux postproc xa input |
57 ifeq ($(VIDIX),yes) | 57 ifeq ($(VIDIX),yes) |
58 PARTS += libdha vidix | 58 PARTS += libdha vidix |
59 endif | 59 endif |
60 ifeq ($(VO2),yes) | 60 ifeq ($(VO2),yes) |
61 PARTS += libvo2 | 61 PARTS += libvo2 |
170 $(MAKE) -C xa | 170 $(MAKE) -C xa |
171 | 171 |
172 g72x/libg72x.a: | 172 g72x/libg72x.a: |
173 $(MAKE) -C g72x | 173 $(MAKE) -C g72x |
174 | 174 |
175 MPLAYER_DEP = $(OBJS_MPLAYER) $(LOADER_DEP) $(MP1E_DEP) $(AV_DEP) $(COMMON_DEPS) | 175 input/libinput.a: |
176 $(MAKE) -C input | |
177 | |
178 MPLAYER_DEP = $(OBJS_MPLAYER) $(LOADER_DEP) $(MP1E_DEP) $(AV_DEP) $(COMMON_DEPS) input/libinput.a | |
176 MENCODER_DEP = $(OBJS_MENCODER) $(LOADER_DEP) $(MP1E_DEP) $(AV_DEP) $(COMMON_DEPS) | 179 MENCODER_DEP = $(OBJS_MENCODER) $(LOADER_DEP) $(MP1E_DEP) $(AV_DEP) $(COMMON_DEPS) |
177 | 180 |
178 ifeq ($(GUI),yes) | 181 ifeq ($(GUI),yes) |
179 MPLAYER_DEP += Gui/libgui.a | 182 MPLAYER_DEP += Gui/libgui.a |
180 MENCODER_DEP += Gui/libgui.a | 183 MENCODER_DEP += Gui/libgui.a |
185 ifeq ($(VIDIX),yes) | 188 ifeq ($(VIDIX),yes) |
186 VIDIX_LIBS += -Lvidix -lvidix | 189 VIDIX_LIBS += -Lvidix -lvidix |
187 endif | 190 endif |
188 | 191 |
189 $(PRG): $(MPLAYER_DEP) | 192 $(PRG): $(MPLAYER_DEP) |
190 $(CC) $(CFLAGS) -o $(PRG) $(OBJS_MPLAYER) $(CODEC_LIBS) -Llibmpdemux -lmpdemux $(GUI_LIBS) $(VO_LIBS) $(AO_LIBS) $(LIB_LOADER) $(COMMON_LIBS) $(EXTRA_LIB) $(A_LIBS) $(V_LIBS) $(LIRC_LIB) $(CSS_LIB) $(ARCH_LIB) $(DECORE_LIB) $(TERMCAP_LIB) $(STATIC_LIB) $(GTK_LIBS) $(PNG_LIB) $(Z_LIB) $(STREAMING_LIB) $(VIDIX_LIBS) -lm | 193 $(CC) $(CFLAGS) -o $(PRG) $(OBJS_MPLAYER) $(CODEC_LIBS) -Llibmpdemux -lmpdemux $(GUI_LIBS) $(VO_LIBS) $(AO_LIBS) $(LIB_LOADER) $(COMMON_LIBS) $(EXTRA_LIB) $(A_LIBS) $(V_LIBS) $(LIRC_LIB) $(CSS_LIB) $(ARCH_LIB) $(DECORE_LIB) $(TERMCAP_LIB) $(STATIC_LIB) $(GTK_LIBS) $(PNG_LIB) $(Z_LIB) $(STREAMING_LIB) $(VIDIX_LIBS) -Linput -linput -lm |
191 | 194 |
192 $(PRG_FIBMAP): fibmap_mplayer.o | 195 $(PRG_FIBMAP): fibmap_mplayer.o |
193 $(CC) -o $(PRG_FIBMAP) fibmap_mplayer.o | 196 $(CC) -o $(PRG_FIBMAP) fibmap_mplayer.o |
194 | 197 |
195 ifeq ($(MENCODER),yes) | 198 ifeq ($(MENCODER),yes) |