Mercurial > mplayer.hg
view libao2/Makefile @ 20276:f0f6217f58e2
r20257: Disable loading of file-specific configuration file from the same
directory as the played file. Add a command-line switch to enable it.
r20260: Update x264 option names that changed with r20060
r20264: small grammar fix
r20265: Use American spelling of "gray" instead for British's "grey" for XviD option
r20277: Update x264 option names that changed with r20060
r20279: mention new -use-filedir-conf option in general config description
r20280: remove me=3 leftover (x264)
author | kraymer |
---|---|
date | Tue, 17 Oct 2006 11:21:11 +0000 |
parents | 4f71ed7cb512 |
children | 618d1857f4c4 |
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 = -I. -I.. $(OPTFLAGS) .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