#/* LICENSE:
#  =========================================================================
#    CMPack'04 Source Code Release for OPEN-R SDK 1.1.5-r2 for ERS7
#    Copyright (C) 2004 Multirobot Lab [Project Head: Manuela Veloso]
#    School of Computer Science, Carnegie Mellon University
#    All rights reserved.
#  ========================================================================= */
#
# The Aperios Software Platform
#
# This program is subject to copyright protection in accordance with the
# applicable law. It must not, except where allowed by law, by any means or
# in any form be reproduced, distributed or lent. Moreover, no part of the
# program may be used, viewed, printed, disassembled or otherwise interfered
# with in any form, except where allowed by law, without the express written
# consent of the copyright holder.
#
# portions Copyright 1988-1999 Sony Corporation
# All Rights Reserved.
#

# target module name
TARGET_USER_OBJECT  = SPOut
TARGET_USER_OBJECT_BIN  = SPOUT

STUB_BASE = SPOutStub

# C++ source files
SHARED_SRCS = \
	../shared_code/AperiosSharedMem.cc \
	../shared_code/CircBufPacket.cc \
	../shared_code/Config.cc \
	../shared_code/Dictionary.cc \
	../shared_code/FileSystem.cc \
	../shared_code/PacketMux.cc \

SPOUT_SRCS = \
	SPOut.cc \
	SPOutStub.cc \

CC_SRCS = \
	$(SPOUT_SRCS) \
	$(SHARED_SRCS) \

CC_OBJS = $(CC_SRCS:.cc=.mips.o)
CC_DEPS = $(CC_SRCS:.cc=.mips.d)

# extra unusual generated .h files
GEN_HS := 

include ../Makefile.sdk.common

