# /* LICENSE:
#   =========================================================================
#     CMPack'03 Source Code Release for OPEN-R SDK v1.0
#     Copyright (C) 2003 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  = Logger
TARGET_USER_OBJECT_BIN  = LOGGER

STUB_BASE = LoggerStub

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

LOGGER_SRCS = \
	Logger.cc \
	LoggerStub.cc \
	../shared_code/CircBufPacket.cc \
	../shared_code/FileSystem.cc \
	../shared_code/PacketMux.cc \
	../shared_code/SPOutEncoder.cc \

CC_SRCS = \
	$(LOGGER_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
