# /*
#  *****************************************************************************
#  *                                                                           *
#  *              IMPINJ CONFIDENTIAL AND PROPRIETARY                          *
#  *                                                                           *
#  * This source code is the sole property of Impinj, Inc. Reproduction or     *
#  * utilization of this source code in whole or in part is forbidden without  *
#  * the prior written consent of Impinj, Inc.                                 *
#  *                                                                           *
#  * (c) Copyright Impinj, Inc. 2013-2016. All rights reserved.                *
#  *                                                                           *
#  *****************************************************************************/

# Compile the doc examples and IRI examples
all: Examples

.PHONY : Examples clean

Examples:
	cd Examples && $(MAKE)

clean:
	rm *.o
	cd Examples && $(MAKE) clean
