| # |
| # 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 = \ |
| |
| clean: |
| |
| include post.mak |