mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-21 20:56:39 +00:00
from IgorG. Merged revisions 84170 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r84170 | russell | 2007-10-01 10:00:56 -0500 (Mon, 01 Oct 2007) | 3 lines Remove another file in "make clean". (closes issue #10814, paravoid) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@84171 65c4cc65-6c06-0410-ace0-fbb531ad65f3
18 lines
267 B
Makefile
18 lines
267 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
|