Mercurial > mplayer.hg
annotate libao2/Makefile @ 14593:d984f4f3a708
Sync with 1.864: Force missing linebreak.
author | gpoirier |
---|---|
date | Tue, 25 Jan 2005 18:21:26 +0000 |
parents | 21e72b6d8d11 |
children | d3d30585a9d2 |
rev | line source |
---|---|
966
69b4f944ce08
Added support for sdl audio out (buggy pre-alpha).
atmosfear
parents:
954
diff
changeset
|
1 include config.mak |
954 | 2 |
1013
74d55f3c4680
libao->libao2 because of conflict with OMS's libao
arpi_esp
parents:
1010
diff
changeset
|
3 LIBNAME = libao2.a |
954 | 4 |
14254 | 5 SRCS=audio_out.c ao_mpegpes.c ao_null.c ao_pcm.c $(OPTIONAL_SRCS) |
3631
5f5189ac6a41
Added plugin for fractional resampling (alpha code)
anders
parents:
3484
diff
changeset
|
6 |
954 | 7 OBJS=$(SRCS:.c=.o) |
8 | |
13878
66637fa67531
polyaudio audio driver patch by Lennart Poettering <mzzcynlre at 0pointer.de>
faust3
parents:
12662
diff
changeset
|
9 CFLAGS = $(OPTFLAGS) -I. -I.. $(ARTS_INC) $(ESD_INC) $(JACK_INC) $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(DXR2_INC) $(DVB_INC) $(POLYP_INC) |
954 | 10 |
11 .SUFFIXES: .c .o | |
12 | |
13 # .PHONY: all clean | |
14 | |
15 .c.o: | |
16 $(CC) -c $(CFLAGS) -o $@ $< | |
17 | |
1010 | 18 $(LIBNAME): $(OBJS) |
954 | 19 $(AR) r $(LIBNAME) $(OBJS) |
12632 | 20 $(RANLIB) $(LIBNAME) |
954 | 21 |
22 all: $(LIBNAME) | |
23 | |
24 clean: | |
25 rm -f *.o *.a *~ | |
26 | |
27 distclean: | |
28 rm -f Makefile.bak *.o *.a *~ .depend | |
29 | |
30 dep: depend | |
31 | |
1010 | 32 depend: |
954 | 33 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend |
34 | |
35 # | |
36 # include dependency files if they exist | |
37 # | |
38 ifneq ($(wildcard .depend),) | |
39 include .depend | |
40 endif |