Mercurial > mplayer.hg
view libaf/Makefile @ 8255:97e8dfe61ab1
check for -Wall support & use it if available patch by (Dominik Mierzejewski <dominik at rangers dot eu dot org>)
arpi, feel free to reverse if u dont like -Wall
author | michael |
---|---|
date | Sat, 23 Nov 2002 11:01:23 +0000 |
parents | e8832e66babd |
children | 226e6866212d |
line wrap: on
line source
include ../config.mak LIBNAME = libaf.a SRCS=af.c af_mp.c af_dummy.c af_delay.c af_channels.c af_format.c af_resample.c window.c filter.c af_volume.c af_equalizer.c OBJS=$(SRCS:.c=.o) CFLAGS = $(OPTFLAGS) -I. .SUFFIXES: .c .o .c.o: $(CC) -c $(CFLAGS) -o $@ $< $(LIBNAME): $(OBJS) Makefile $(AR) r $(LIBNAME) $(OBJS) $(OBJS):af.h control.h dsp.h filter.h window.h af_mp.h all: $(LIBNAME) clean: rm -f *.o *.a *~ distclean: rm -f *.o *.a *~ .depend dep: depend depend: $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend # # include dependency files if they exist # ifneq ($(wildcard .depend),) include .depend endif