view mpcommon.mak @ 22463:979b2aa16e80

support for AMR; it works inserting in the first byte of the demux_packet a 1-byte header that live555 seems to be stripping for some reason, although according to the specs it should be there. Patch by Carl Eugen Hoyos.
author nicodvb
date Tue, 06 Mar 2007 22:53:52 +0000
parents 068c5141bff6
children 12b3d4c8b263
line wrap: on
line source

SRCS         += $(SRCS-yes)
SRCS2        += $(SRCS2-yes)
CFLAGS       += $(CFLAGS-yes)

OBJS  = $(addsuffix .o, $(basename $(SRCS)) )
OBJS2 = $(addsuffix .o, $(basename $(SRCS2)) )

CFLAGS += -I. -I.. $(OPTFLAGS)

LIBS = $(LIBNAME) $(LIBNAME2)

all:    $(LIBS)

$(LIBNAME): $(OBJS)
$(LIBNAME2): $(OBJS2)
$(LIBNAME) $(LIBNAME2):
	$(AR) r $@ $^
	$(RANLIB) $@

clean::
	rm -f *.o *.a *~

distclean:: clean
	rm -f .depend

dep depend:
	$(CC) -MM $(CFLAGS) $(SRCS) $(SRCS2) 1>.depend

-include .depend