You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asterisk/codecs/g722/Makefile

17 lines
253 B

LIB=libg722.a
CFLAGS+=-fPIC
include $(ASTTOPDIR)/Makefile.rules
OBJS=g722_encode.o g722_decode.o
all: $(LIB)
$(LIB): $(OBJS)
$(ECHO_PREFIX) echo " [AR] $^ -> $@"
$(CMD_PREFIX) $(AR) cr $@ $^
$(CMD_PREFIX) $(RANLIB) $@
clean:
rm -f $(LIB) *.o