Mercurial > mplayer.hg
view libao2/Makefile @ 19118:89c3cff711f3
r19087: Remove support for obsolete and non-free divx4/odivx libraries.
r18916: Modifies behavior of -edlout
r18818: kill unused message string MSGTR_LIBVO_MGA_MgaInvalidOutputFormat
r18816: [directly applied by attila]
r18815: fail with an error if the source resolution is larger than 1023x1023 when using -vo (x)mga
r18716: Remove misleading Encrypted VOB message
author | kraymer |
---|---|
date | Sun, 16 Jul 2006 15:46:19 +0000 |
parents | 7a9a9748e045 |
children | 1ea5c31932fd |
line wrap: on
line source
include ../config.mak LIBNAME = libao2.a SRCS=audio_out.c \ ao_mpegpes.c \ ao_null.c \ ao_pcm.c \ $(AO_SRCS) \ OBJS=$(SRCS:.c=.o) CFLAGS = $(OPTFLAGS) -I. -I.. \ $(ARTS_INC) \ $(DVB_INC) \ $(DXR2_INC) \ $(ESD_INC) \ $(JACK_INC) \ $(OPENAL_INC) \ $(POLYP_INC) \ $(SDL_INC) \ $(X11_INC) \ .SUFFIXES: .c .o # .PHONY: all clean .c.o: $(CC) -c $(CFLAGS) -o $@ $< $(LIBNAME): $(OBJS) $(AR) r $(LIBNAME) $(OBJS) $(RANLIB) $(LIBNAME) all: $(LIBNAME) clean: rm -f *.o *.a *~ distclean: clean rm -f .depend dep: depend depend: $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend # # include dependency files if they exist # ifneq ($(wildcard .depend),) include .depend endif