Mercurial > mplayer.hg
view TOOLS/netstream/Makefile @ 12641:61f3fce1e933
remove the latest use of log10 in favor of the better af_to_dB helper function, patch by Reimar Doffinger
author | alex |
---|---|
date | Fri, 25 Jun 2004 15:26:59 +0000 |
parents | d051cf39331e |
children | 43a231d89ef0 |
line wrap: on
line source
MPROOT=../.. include $(MPROOT)/config.mak INCLUDE = -I$(MPROOT) -I$(MPROOT)/loader $(EXTRA_INC) CFLAGS = $(OPTFLAGS) $(INCLUDE) .SUFFIXES: .c .cpp .o # .PHONY: all clean all: netstream .c.o: $(CC) -c $(CFLAGS) -o $@ $< netstream: $(MPROOT)/libmpdemux/libmpdemux.a netstream.o $(CC) $(CFLAGS) netstream.o -o netstream $(MPROOT)/libmpdemux/libmpdemux.a $(MPROOT)/libmpdvdkit2/libmpdvdkit.a $(MPROOT)/libmpcodecs/native/minilzo.o $(MPROOT)/libvo/aclib.o $(MPROOT)/libmpcodecs/img_format.o $(MPROOT)/libao2/afmt.o $(MPROOT)/m_option.o $(MPROOT)/m_struct.o $(MPROOT)/subreader.o $(MPROOT)/mp_msg.o $(MPROOT)/osdep/shmem.o $(MPROOT)/osdep/timer-*.o $(VORBIS_LIB) $(CDPARANOIA_LIB) -lpthread -lsmbclient -lungif clean: rm -f *.o *.a *~ distclean: rm -f test Makefile.bak *.o *.a *~ .depend dep: depend depend: $(CC) -MM $(CFLAGS) test.c $(SRCS) 1>.depend # # include dependency files if they exist # ifneq ($(wildcard .depend),) include .depend endif