blob: b4f68537a03494ba725fcf16f0a072430aeb76bd [file] [log] [blame]
#
# Copyright (c) 2012 Nest Labs, Inc.
# All rights reserved.
#
# This document is the property of Nest Labs. It is considered
# confidential and proprietary information.
#
# This document may not be reproduced or transmitted in any form,
# in whole or in part, without the express written permission of
# Nest Labs.
#
# Description:
# This file is the make file for WebRTC G722 library
#
include pre.mak
.DEFAULT_GOAL := all
ARCHIVES = g722
VPATH = src
g722_SOURCES = g722_decode.c \
g722_encode.c
g722_INCLUDES = include
g722_LDLIBS = \
g722_DEPLIBS = \
# While the WebRTC G722 codec library uses the nlbuild build system, it is
# still third-party software and we do not want to enforce style semantics
# on it. Consequently, set PrettyPaths to empty.
PrettyPaths := $(NULL)
clean:
include post.mak