Mercurial > mplayer.hg
annotate libao2/Makefile @ 16487:bafefab46f12
minor wording fix in the advanced audio guide
author | wanderer |
---|---|
date | Wed, 14 Sep 2005 21:15:38 +0000 |
parents | d3d30585a9d2 |
children | ce1ba8fd57e7 |
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 |
15772 | 5 SRCS=audio_out.c \ |
6 ao_mpegpes.c \ | |
7 ao_null.c \ | |
8 ao_pcm.c \ | |
9 $(OPTIONAL_SRCS) \ | |
3631
5f5189ac6a41
Added plugin for fractional resampling (alpha code)
anders
parents:
3484
diff
changeset
|
10 |
954 | 11 OBJS=$(SRCS:.c=.o) |
12 | |
15772 | 13 CFLAGS = $(OPTFLAGS) -I. -I.. \ |
14 $(ARTS_INC) \ | |
15 $(DVB_INC) \ | |
16 $(DXR2_INC) \ | |
17 $(ESD_INC) \ | |
18 $(EXTRA_INC) \ | |
19 $(JACK_INC) \ | |
20 $(POLYP_INC) \ | |
21 $(SDL_INC) \ | |
22 $(X11_INC) \ | |
954 | 23 |
24 .SUFFIXES: .c .o | |
25 | |
26 # .PHONY: all clean | |
27 | |
28 .c.o: | |
29 $(CC) -c $(CFLAGS) -o $@ $< | |
30 | |
1010 | 31 $(LIBNAME): $(OBJS) |
954 | 32 $(AR) r $(LIBNAME) $(OBJS) |
12632 | 33 $(RANLIB) $(LIBNAME) |
954 | 34 |
35 all: $(LIBNAME) | |
36 | |
37 clean: | |
38 rm -f *.o *.a *~ | |
39 | |
40 distclean: | |
41 rm -f Makefile.bak *.o *.a *~ .depend | |
42 | |
43 dep: depend | |
44 | |
1010 | 45 depend: |
954 | 46 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend |
47 | |
48 # | |
49 # include dependency files if they exist | |
50 # | |
51 ifneq ($(wildcard .depend),) | |
52 include .depend | |
53 endif |