Archived
14
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
asterisk/codecs/g722/Makefile
2007-10-29 22:24:44 +00:00

19 lines
282 B
Makefile

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
rm -f .*.o.d
rm -f *.s *.i