Mercurial > mplayer.hg
annotate libao2/Makefile @ 21098:90ed81455c5c
Cosmetics: remove unneeded curly brackets.
author | eugeni |
---|---|
date | Mon, 20 Nov 2006 17:13:19 +0000 |
parents | 618d1857f4c4 |
children | 68df3b19a160 |
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 | |
19420
4f71ed7cb512
Move all internal -I parameters to the front of CFLAGS to avoid using external
diego
parents:
19190
diff
changeset
|
13 CFLAGS = -I. -I.. $(OPTFLAGS) |
954 | 14 |
15 .SUFFIXES: .c .o | |
16 | |
17 # .PHONY: all clean | |
18 | |
19 .c.o: | |
20 $(CC) -c $(CFLAGS) -o $@ $< | |
21 | |
1010 | 22 $(LIBNAME): $(OBJS) |
954 | 23 $(AR) r $(LIBNAME) $(OBJS) |
12632 | 24 $(RANLIB) $(LIBNAME) |
954 | 25 |
26 all: $(LIBNAME) | |
27 | |
28 clean: | |
29 rm -f *.o *.a *~ | |
30 | |
17488
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
15772
diff
changeset
|
31 distclean: clean |
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
15772
diff
changeset
|
32 rm -f .depend |
954 | 33 |
21080 | 34 dep depend: |
954 | 35 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend |
36 | |
37 # | |
38 # include dependency files if they exist | |
39 # | |
40 ifneq ($(wildcard .depend),) | |
41 include .depend | |
42 endif |