Mercurial > mplayer.hg
view Gui/mplayer/Makefile @ 6110:7bea806b9c5f
Improvment for spu subtitles.
Removed the integreted spudec in vobsub.
Various cleanup/bugfix in vobsub (no more auto palette when a true one is
here)
HW spu rendering moved in spudec because we first need to reassable the
packet before sending them to the hw.
Spudec is now created only if nedded.
author | albeu |
---|---|
date | Fri, 17 May 2002 23:47:27 +0000 |
parents | 424595b48678 |
children |
line wrap: on
line source
include ../../config.mak include ../config.mak include ../bitmap/bitmap.mak include ../gui.mak LIB = mplayer INCDIR = -I. -I../event -I../wm -I../skin $(GTKINC) $(EXTRA_INC) OPTIMIZE = $(OPTFLAGS) -fomit-frame-pointer \ -fexpensive-optimizations -fschedule-insns2 -Wall ifeq ($(TARGET_ARCH_X86),yes) OPTIMIZE += -malign-double endif CFLAGS = $(OPTIMIZE) $(INCDIR) $(DEBUG) .SUFFIXES: .c .o .c.o: $(CC) -c $(CFLAGS) -o $@ $< ### TARGETS ### default: .depend $(MPLAYEROBJS) all: default clean: rm -rf $(MPLAYEROBJS) *.o *~ *.bak .depend distclean: clean dep: depend depend: .depend .depend: Makefile ../config.mak ../gui.mak ../bitmap/bitmap.mak $(CC) -MM $(CFLAGS) $(MPLAYERSRCS) 1>.depend # # include dependency files if they exist # ifneq ($(wildcard .depend),) include .depend endif