Mercurial > mplayer.hg
annotate libao2/Makefile @ 19143:c4dac777b44c
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
author | lucabe |
---|---|
date | Thu, 20 Jul 2006 12:13:57 +0000 |
parents | 7a9a9748e045 |
children | 1ea5c31932fd |
rev | line source |
---|---|
19034 | 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 \ | |
19034 | 9 $(AO_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 $(JACK_INC) \ | |
17633
e0ef5688cce7
OpenAL audio support, actual output is mono-only (no positioning yet).
reimar
parents:
17488
diff
changeset
|
19 $(OPENAL_INC) \ |
15772 | 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 | |
17488
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
15772
diff
changeset
|
40 distclean: clean |
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
15772
diff
changeset
|
41 rm -f .depend |
954 | 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 |