Mercurial > mplayer.hg
comparison libao2/Makefile @ 10159:3de6f1bcbc1a
do it the standard way (tm)
author | alex |
---|---|
date | Fri, 23 May 2003 12:37:58 +0000 |
parents | f2725d6717bd |
children | 80973aa180a5 |
comparison
equal
deleted
inserted
replaced
10158:93e5428d0b3e | 10159:3de6f1bcbc1a |
---|---|
1 | |
2 include config.mak | 1 include config.mak |
3 | 2 |
4 LIBNAME = libao2.a | 3 LIBNAME = libao2.a |
5 | 4 |
6 # TODO: moveout ao_sdl.c so it's only used when SDL is detected | |
7 SRCS=afmt.c audio_out.c ao_mpegpes.c ao_null.c ao_pcm.c ao_plugin.c pl_delay.c pl_format.c pl_surround.c remez.c pl_resample.c pl_volume.c pl_extrastereo.c pl_volnorm.c pl_eq.c $(OPTIONAL_SRCS) | 5 SRCS=afmt.c audio_out.c ao_mpegpes.c ao_null.c ao_pcm.c ao_plugin.c pl_delay.c pl_format.c pl_surround.c remez.c pl_resample.c pl_volume.c pl_extrastereo.c pl_volnorm.c pl_eq.c $(OPTIONAL_SRCS) |
8 | |
9 ifeq ($(MACOSX),yes) | |
10 SRCS += ao_macosx.c | |
11 endif | |
12 | 6 |
13 OBJS=$(SRCS:.c=.o) | 7 OBJS=$(SRCS:.c=.o) |
14 | 8 |
15 CFLAGS = $(OPTFLAGS) -I. -I.. $(ARTS_INC) $(ESD_INC) $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(DXR2_INC) $(DVB_INC) | 9 CFLAGS = $(OPTFLAGS) -I. -I.. $(ARTS_INC) $(ESD_INC) $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(DXR2_INC) $(DVB_INC) |
16 | 10 |
41 # include dependency files if they exist | 35 # include dependency files if they exist |
42 # | 36 # |
43 ifneq ($(wildcard .depend),) | 37 ifneq ($(wildcard .depend),) |
44 include .depend | 38 include .depend |
45 endif | 39 endif |
46 |