# Makefile generated by imake - do not edit!
# $XConsortium: imake.c,v 1.72 92/09/14 11:44:22 rws Exp $
#
# The cpp used on this machine replaces all newlines and multiple tabs and
# spaces in a macro expansion with a single space.  Imake tries to compensate
# for this, but is not always successful.
#

###########################################################################
# Makefile generated from "Imake.tmpl" and </tmp/IIf.a000Q9>
# $Id: Makefile,v 1.10 1997/02/23 00:48:07 sib Exp $
#
# Platform-specific parameters may be set in the appropriate .cf
# configuration files.  Site-wide parameters may be set in the file
# site.def.  Full rebuilds are recommended if any parameters are changed.
#
# If you absolutely can't get imake to work, you'll need to set the
# variables at the top of each Makefile as well as the dependencies at the
# bottom (makedepend will do this automatically).
#

###########################################################################
# Platform-specific configuration parameters - edit vx68k.cf to change
###########################################################################

# Platform:  $Id: Makefile,v 1.10 1997/02/23 00:48:07 sib Exp $

VXWORKS_DIR			= /usr/vxworks/vx5.2
VXWORKS_COMP_DIR		= /usr/rti/gnu/sparcSol2-m68k/bin

###########################################################################
# Site-specific configuration parameters - edit site.def to change
###########################################################################

# Site:  $Id: Makefile,v 1.10 1997/02/23 00:48:07 sib Exp $

###########################################################################
# Configured Parameters
# $Id: Makefile,v 1.10 1997/02/23 00:48:07 sib Exp $
###########################################################################

RELEASE_DIR	= /usr/sib/lri/software/vx68k

CURRENT_DIR	= .

CC		= $(VXWORKS_COMP_DIR)/g++
CCC		= $(VXWORKS_COMP_DIR)/g++
CFG_CFLAGS	= -fno-builtin -nostdinc -m68881 -fno-gnu-linker -B/usr/rti/gnu/sparcSol2-m68k/lib/gcc-lib/ -DCPU=MC68020 -DVXWORKS -DVX68K -I$(VXWORKS_DIR)/h
CFG_CPPFLAGS.cfg=

LD		= $(VXWORKS_COMP_DIR)/m68k-ld
CFG_LDFLAGS	=

RANLIB		= $(VXWORKS_COMP_DIR)/m68k-ranlib

AR		= $(VXWORKS_COMP_DIR)/m68k-ar

INSTALL		= install
RM		= rm -f
MV		= mv -f

COMPILE.c	= $(CC) $(CFLAGS) $(CPPFLAGS) -c

COMPILE.cc	= $(CCC) $(CFLAGS) $(CPPFLAGS) -c

LINK.c		= $(LD) $(LDFLAGS) -r

###########################################################################
# Imake rules for building libraries, programs, scripts, and data files
# rules:  $Id: Makefile,v 1.10 1997/02/23 00:48:07 sib Exp $

###########################################################################
# start of Imakefile
###########################################################################

# ############################################################################
#       $Id: Makefile,v 1.10 1997/02/23 00:48:07 sib Exp $
# $Revision: 1.10 $
#     $Date: 1997/02/23 00:48:07 $
#
# (c) Copyright 1994 Carnegie Mellon University. All rights reserved.
#
# PROJECT:	Atacama Desert Trek
#
# FILE:		Imakefile
#		Based on Erebus prototypical Imakefile
#		Imakefile.proto,v 1.7 1994/03/09 19:09:26 jwest Exp
#
# DESCRIPTION:
#	Testing Directory
#
# EXPORTS:
#	Targets available after imake configuration:
#		all, libs, bins, install, install.bins, install.incs
#		install.libs install.mans clean
#
# HISTORY:
# $Log: Makefile,v $
# Revision 1.10  1997/02/23  00:48:07  sib
# Rehauled whole system of traject, pid, amps, drive, drivesys. test_drive works perfectly; test_point does not.
#
# Revision 1.7  1997/02/06  16:27:48  sib
# Got pointing system demo up.
#
# Revision 1.6  1997/02/05  10:15:50  sib
# Got Pointing working.
#
# Revision 1.5  1997/02/04  08:10:34  sib
# Made Trajectory generator work with everything else.
#
# Revision 1.4  1997/02/03  08:28:33  sib
# Added trajectory generator; does not work yet.
#
# Revision 1.3  1997/01/29  08:34:38  sib
# Added code to "Close the Loop". Did not test.
#
# Revision 1.2  1997/01/28  06:49:48  sib
# Got all intefaces working and tested them.
#
# Revision 1.1  1997/01/22  18:49:28  sib
# Wrote new encoder testing functions.
#
# Revision 1.1.1.1  1997/01/16  04:18:53  sib
# Initial cvs import of the vxworks 68k code so far
#
# Revision 1.1.1.1  1996/12/18  05:51:35  sib
# Software for the Atacama Desert Trek for all computing platforms
#
# Revision 1.2  1994/03/18  20:50:53  hmp
# Split more logically into pio/adc/dac sections
#
# Revision 1.1  1994/03/10  16:30:42  hmp
# Converted to Imake system
#
# ############################################################################
# Required Makefile Macro Definitions used by Imake macros
#
# INSTALL_DIR		Must not be empty.
#			Used by the Install[Inc Bin ...](..) macros
# SUBDIRS		List of subdirectories you generally want make
#			to recursively go through.
# CFLAGS		Used during compilation/linking
# CPPFLAGS		Used during compilation/linking
# LDLIBS		Used during compilation/linking
# LDFLAGS		Used during compilation/linking
# FILES_TO_CLEAN	Additional files to rm on 'make clean'
#
# See the Imake generated Makefile for how these macros are used.
#
# Some (not all listed here) useful macro functions:
#
# "ComplexProgramTarget(program,objects,deplibs,locallibs)"
#	<program> is dependent on <deplibs>
#	Program is build by
#		 $(LINK.c) -o $@ objects locallibs $(LDLIBS)
# "SimpleProgramTarget(program)"
#	Equivalent to "ComplexProgramTarget(program,program.o,,)"
# "NormalProgramTarget(program,objects)"
#	Equivalent to "ComplexProgramTarget(program,objects,,)"
# "NormalLibraryTarget(libname,objlist)"
# 	lib<libname>.a is dependent on <objlist>
#	Builds lib<libname>.a from <objlist>
# "InstallInc(singleFile)"
#	installs <singleFile> to $(INSTALL_DIR)/include upon
#		"make install" or "make install.incs"
# "InstallBin(singleFile)"
#	installs <singleFile> to $(INSTALL_DIR)/bin upon
#		"make install" or "make install.bin"
# "InstallLib(singleFile)"
#	installs <singleFile> to $(INSTALL_DIR)/lib upon
#		"make install" or "make install.lib"
#
# Targets automatically generated:  libs, bins, install, install.bins
#	install.incs install.libs install.mans clean

.KEEP_STATE:

# Paths
# RELEASE_DIR defined by configuration
# CURRENT_DIR defined by configuration
INSTALL_DIR   = ../..

MODULE        = test

INC_PATH      = -I. \
		-I$(INSTALL_DIR)/include/$(MODULE) \
		-I$(INSTALL_DIR)/include \
		-I$(RELEASE_DIR)/include/$(MODULE) \
		-I$(RELEASE_DIR)/include \
		-I/user/rti/rtilib/include/vx \
		-I/user/rti/scope/include/vx \
		-I/user/rti/rtilib/include/share \
		-I/user/rti/scope/include/share
LIB_PATH      = -L. \
		-L$(INSTALL_DIR)/lib \
		-L$(RELEASE_DIR)/lib
# Compiler Options
# CFG_CFLAGS   defined by configuration
# CFG_CPPFLAGS defined by configuration
DEFINES       = -D__PROTOTYPE_5_2
CFLAGS        = -g -Wall -Wshadow -Wpointer-arith -Wcast-qual $(CFG_CFLAGS)
CPPFLAGS      = $(DEFINES) $(INC_PATH) $(CFG_CPPFLAGS)

# Loader Options
# CFG_LDFLAGS defined by configuration
LIBRARIES             = test
DEP_LIBS              = $(LIBRARIES:%=lib%.a)
LOCAL_LIBS	      = $(LIB_PATH) $(LIBRARIES:%=-l%)

LDLIBS		      =

LDFLAGS		      = $(LIB_PATH) $(CFG_LDFLAGS)

FILES_TO_CLEAN	      = core \#*\# *~ .*~ *.o .make.state

# ############################################################################
# Targets
# ############################################################################

all:: libs bins

bins:: test_enc.o

installFiles.incs:: $(INSTALL_DIR)/include/$(MODULE)/test_enc.h

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/include/$(MODULE)/test_enc.h
$(INSTALL_DIR)/include/$(MODULE)/test_enc.h:: test_enc.h
	@if [ ! -d $(INSTALL_DIR)/include/$(MODULE) ]; then \
	mkdir -p $(INSTALL_DIR)/include/$(MODULE); \
	fi
	$(INSTALL) -m 444 test_enc.h $(INSTALL_DIR)/include/$(MODULE)

installFiles.bins:: $(INSTALL_DIR)/bin/test_enc.o

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/bin/test_enc.o
$(INSTALL_DIR)/bin/test_enc.o:: test_enc.o
	@if [ ! -d $(INSTALL_DIR)/bin ]; then \
	mkdir -p $(INSTALL_DIR)/bin; \
	fi
	$(INSTALL) -m 555 test_enc.o $(INSTALL_DIR)/bin

bins:: test_dac.o

installFiles.incs:: $(INSTALL_DIR)/include/$(MODULE)/test_dac.h

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/include/$(MODULE)/test_dac.h
$(INSTALL_DIR)/include/$(MODULE)/test_dac.h:: test_dac.h
	@if [ ! -d $(INSTALL_DIR)/include/$(MODULE) ]; then \
	mkdir -p $(INSTALL_DIR)/include/$(MODULE); \
	fi
	$(INSTALL) -m 444 test_dac.h $(INSTALL_DIR)/include/$(MODULE)

installFiles.bins:: $(INSTALL_DIR)/bin/test_dac.o

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/bin/test_dac.o
$(INSTALL_DIR)/bin/test_dac.o:: test_dac.o
	@if [ ! -d $(INSTALL_DIR)/bin ]; then \
	mkdir -p $(INSTALL_DIR)/bin; \
	fi
	$(INSTALL) -m 555 test_dac.o $(INSTALL_DIR)/bin

bins:: test_adc.o

installFiles.incs:: $(INSTALL_DIR)/include/$(MODULE)/test_adc.h

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/include/$(MODULE)/test_adc.h
$(INSTALL_DIR)/include/$(MODULE)/test_adc.h:: test_adc.h
	@if [ ! -d $(INSTALL_DIR)/include/$(MODULE) ]; then \
	mkdir -p $(INSTALL_DIR)/include/$(MODULE); \
	fi
	$(INSTALL) -m 444 test_adc.h $(INSTALL_DIR)/include/$(MODULE)

installFiles.bins:: $(INSTALL_DIR)/bin/test_adc.o

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/bin/test_adc.o
$(INSTALL_DIR)/bin/test_adc.o:: test_adc.o
	@if [ ! -d $(INSTALL_DIR)/bin ]; then \
	mkdir -p $(INSTALL_DIR)/bin; \
	fi
	$(INSTALL) -m 555 test_adc.o $(INSTALL_DIR)/bin

bins:: test_di.o

installFiles.incs:: $(INSTALL_DIR)/include/$(MODULE)/test_di.h

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/include/$(MODULE)/test_di.h
$(INSTALL_DIR)/include/$(MODULE)/test_di.h:: test_di.h
	@if [ ! -d $(INSTALL_DIR)/include/$(MODULE) ]; then \
	mkdir -p $(INSTALL_DIR)/include/$(MODULE); \
	fi
	$(INSTALL) -m 444 test_di.h $(INSTALL_DIR)/include/$(MODULE)

installFiles.bins:: $(INSTALL_DIR)/bin/test_di.o

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/bin/test_di.o
$(INSTALL_DIR)/bin/test_di.o:: test_di.o
	@if [ ! -d $(INSTALL_DIR)/bin ]; then \
	mkdir -p $(INSTALL_DIR)/bin; \
	fi
	$(INSTALL) -m 555 test_di.o $(INSTALL_DIR)/bin

bins:: test_do.o

installFiles.incs:: $(INSTALL_DIR)/include/$(MODULE)/test_do.h

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/include/$(MODULE)/test_do.h
$(INSTALL_DIR)/include/$(MODULE)/test_do.h:: test_do.h
	@if [ ! -d $(INSTALL_DIR)/include/$(MODULE) ]; then \
	mkdir -p $(INSTALL_DIR)/include/$(MODULE); \
	fi
	$(INSTALL) -m 444 test_do.h $(INSTALL_DIR)/include/$(MODULE)

installFiles.bins:: $(INSTALL_DIR)/bin/test_do.o

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/bin/test_do.o
$(INSTALL_DIR)/bin/test_do.o:: test_do.o
	@if [ ! -d $(INSTALL_DIR)/bin ]; then \
	mkdir -p $(INSTALL_DIR)/bin; \
	fi
	$(INSTALL) -m 555 test_do.o $(INSTALL_DIR)/bin

bins:: test_relay.o

installFiles.incs:: $(INSTALL_DIR)/include/$(MODULE)/test_relay.h

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/include/$(MODULE)/test_relay.h
$(INSTALL_DIR)/include/$(MODULE)/test_relay.h:: test_relay.h
	@if [ ! -d $(INSTALL_DIR)/include/$(MODULE) ]; then \
	mkdir -p $(INSTALL_DIR)/include/$(MODULE); \
	fi
	$(INSTALL) -m 444 test_relay.h $(INSTALL_DIR)/include/$(MODULE)

installFiles.bins:: $(INSTALL_DIR)/bin/test_relay.o

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/bin/test_relay.o
$(INSTALL_DIR)/bin/test_relay.o:: test_relay.o
	@if [ ! -d $(INSTALL_DIR)/bin ]; then \
	mkdir -p $(INSTALL_DIR)/bin; \
	fi
	$(INSTALL) -m 555 test_relay.o $(INSTALL_DIR)/bin

bins:: test_drive.o

installFiles.incs:: $(INSTALL_DIR)/include/$(MODULE)/test_drive.h

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/include/$(MODULE)/test_drive.h
$(INSTALL_DIR)/include/$(MODULE)/test_drive.h:: test_drive.h
	@if [ ! -d $(INSTALL_DIR)/include/$(MODULE) ]; then \
	mkdir -p $(INSTALL_DIR)/include/$(MODULE); \
	fi
	$(INSTALL) -m 444 test_drive.h $(INSTALL_DIR)/include/$(MODULE)

installFiles.bins:: $(INSTALL_DIR)/bin/test_drive.o

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/bin/test_drive.o
$(INSTALL_DIR)/bin/test_drive.o:: test_drive.o
	@if [ ! -d $(INSTALL_DIR)/bin ]; then \
	mkdir -p $(INSTALL_DIR)/bin; \
	fi
	$(INSTALL) -m 555 test_drive.o $(INSTALL_DIR)/bin

bins:: test_point.o

installFiles.incs:: $(INSTALL_DIR)/include/$(MODULE)/test_point.h

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/include/$(MODULE)/test_point.h
$(INSTALL_DIR)/include/$(MODULE)/test_point.h:: test_point.h
	@if [ ! -d $(INSTALL_DIR)/include/$(MODULE) ]; then \
	mkdir -p $(INSTALL_DIR)/include/$(MODULE); \
	fi
	$(INSTALL) -m 444 test_point.h $(INSTALL_DIR)/include/$(MODULE)

installFiles.bins:: $(INSTALL_DIR)/bin/test_point.o

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/bin/test_point.o
$(INSTALL_DIR)/bin/test_point.o:: test_point.o
	@if [ ! -d $(INSTALL_DIR)/bin ]; then \
	mkdir -p $(INSTALL_DIR)/bin; \
	fi
	$(INSTALL) -m 555 test_point.o $(INSTALL_DIR)/bin

bins:: test_compass.o

installFiles.incs:: $(INSTALL_DIR)/include/$(MODULE)/test_compass.h

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/include/$(MODULE)/test_compass.h
$(INSTALL_DIR)/include/$(MODULE)/test_compass.h:: test_compass.h
	@if [ ! -d $(INSTALL_DIR)/include/$(MODULE) ]; then \
	mkdir -p $(INSTALL_DIR)/include/$(MODULE); \
	fi
	$(INSTALL) -m 444 test_compass.h $(INSTALL_DIR)/include/$(MODULE)

installFiles.bins:: $(INSTALL_DIR)/bin/test_compass.o

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/bin/test_compass.o
$(INSTALL_DIR)/bin/test_compass.o:: test_compass.o
	@if [ ! -d $(INSTALL_DIR)/bin ]; then \
	mkdir -p $(INSTALL_DIR)/bin; \
	fi
	$(INSTALL) -m 555 test_compass.o $(INSTALL_DIR)/bin

###########################################################################
# common rules for all Makefiles - do not edit

emptyrule::

bins:: emptyrule
libs:: emptyrule

clean:: $(SUBDIRS)

clean::
	$(RM) $(FILES_TO_CLEAN)

uninstall:: $(SUBDIRS)
	$(RM_INSTALL_CMD) $(INSTALL_FILE_LIST)

.c.o:
	$(COMPILE.c) -o $@ $<

# C++ support

.SUFFIXES: suffixes .cc .cxx
.cc:
	$(LINK.c) -o $@ $< $(LDLIBS)
.cc.o:
	$(COMPILE.cc) -o $@ $<
.cxx:
	$(LINK.c) -o $@ $< $(LDLIBS)
.cxx.o:
	$(COMPILE.cc) -o $@ $<

###########################################################################
# rules for building in SUBDIRS - do not edit

allSubdirs:: $(SUBDIRS)

installFiles.bins:: emptyrule
installFiles.incs:: emptyrule
installFiles.libs:: emptyrule
installFiles.mans:: emptyrule

install: install.incs install.libs install.binsMans

install.binsMans: $(SUBDIRS) installFiles.bins installFiles.mans
install.incs: $(SUBDIRS) installFiles.incs
install.libs: $(SUBDIRS) installFiles.libs

all := RECURSE_CMD = \
	cd $@; \
	$(MAKE)

allSubdirs := RECURSE_CMD = \
	cd $@; \
	$(MAKE)

install := RECURSE_CMD = \
	cd $@; \
	$(MAKE) install

install.binsMans := RECURSE_CMD = \
	cd $@; \
	$(MAKE) install.binsMans

install.incs := RECURSE_CMD = \
	cd $@; \
	$(MAKE) install.incs

install.libs := RECURSE_CMD = \
	cd $@; \
	$(MAKE) install.libs

uninstall := RECURSE_CMD = \
	cd $@; \
	$(MAKE) uninstall

clean := RECURSE_CMD = \
	cd $@; \
	$(MAKE) clean

depend:
	makedepend $(INC_PATH) -I$(VXWORKS_DIR)/h *.cxx *.c *.cc *.c++ *.cpp

$(SUBDIRS): emptyrule
	$(RECURSE_CMD)

# DO NOT DELETE THIS LINE -- make depend depends on it.

test_adc.o: test_adc.h ../../include/interfaces/adc/adc.h
test_adc.o: ../../include/common/nomad_global.h
test_adc.o: /usr/vxworks/vx5.2/h/vxWorks.h /usr/vxworks/vx5.2/h/types/vxCpu.h
test_adc.o: /usr/vxworks/vx5.2/h/types/vxArch.h
test_adc.o: /usr/vxworks/vx5.2/h/types/vxParams.h
test_adc.o: /usr/vxworks/vx5.2/h/types/vxTypesBase.h
test_adc.o: /usr/vxworks/vx5.2/h/types/vxTypes.h
test_adc.o: /usr/vxworks/vx5.2/h/types/vxANSI.h
test_adc.o: /usr/vxworks/vx5.2/h/types/vxTypesOld.h
test_adc.o: /usr/vxworks/vx5.2/h/sys/types.h /usr/vxworks/vx5.2/h/sysLib.h
test_adc.o: /usr/vxworks/vx5.2/h/bootLib.h /usr/vxworks/vx5.2/h/vme.h
test_adc.o: /usr/vxworks/vx5.2/h/stdioLib.h /usr/vxworks/vx5.2/h/stdio.h
test_adc.o: /usr/vxworks/vx5.2/h/classLib.h /usr/vxworks/vx5.2/h/vwModNum.h
test_adc.o: /usr/vxworks/vx5.2/h/objLib.h /usr/vxworks/vx5.2/h/errno.h
test_adc.o: /usr/vxworks/vx5.2/h/memLib.h
test_adc.o: /usr/vxworks/vx5.2/h/private/objLibP.h
test_adc.o: /usr/vxworks/vx5.2/h/private/classLibP.h
test_adc.o: ../../include/common/nomad_types.h
test_adc.o: ../../include/devices/devices.h
test_adc.o: /user/rti/scope/include/vx/scopeprobe.h
test_adc.o: /user/rti/rtilib/include/share/rtilib/rti_types.h
test_adc.o: /usr/vxworks/vx5.2/h/taskLib.h /usr/vxworks/vx5.2/h/qLib.h
test_adc.o: /usr/vxworks/vx5.2/h/qClass.h /usr/vxworks/vx5.2/h/regs.h
test_adc.o: /usr/vxworks/vx5.2/h/excLib.h
test_adc.o: /usr/vxworks/vx5.2/h/private/eventP.h
test_adc.o: /usr/vxworks/vx5.2/h/private/semLibP.h
test_adc.o: /usr/vxworks/vx5.2/h/semLib.h /usr/vxworks/vx5.2/h/stdlib.h
test_compass.o: test_compass.h ../../include/components/compass/compass.h
test_compass.o: ../../include/common/nomad_global.h
test_compass.o: /usr/vxworks/vx5.2/h/vxWorks.h
test_compass.o: /usr/vxworks/vx5.2/h/types/vxCpu.h
test_compass.o: /usr/vxworks/vx5.2/h/types/vxArch.h
test_compass.o: /usr/vxworks/vx5.2/h/types/vxParams.h
test_compass.o: /usr/vxworks/vx5.2/h/types/vxTypesBase.h
test_compass.o: /usr/vxworks/vx5.2/h/types/vxTypes.h
test_compass.o: /usr/vxworks/vx5.2/h/types/vxANSI.h
test_compass.o: /usr/vxworks/vx5.2/h/types/vxTypesOld.h
test_compass.o: /usr/vxworks/vx5.2/h/sys/types.h
test_compass.o: /usr/vxworks/vx5.2/h/sysLib.h /usr/vxworks/vx5.2/h/bootLib.h
test_compass.o: /usr/vxworks/vx5.2/h/vme.h /usr/vxworks/vx5.2/h/stdioLib.h
test_compass.o: /usr/vxworks/vx5.2/h/stdio.h /usr/vxworks/vx5.2/h/classLib.h
test_compass.o: /usr/vxworks/vx5.2/h/vwModNum.h /usr/vxworks/vx5.2/h/objLib.h
test_compass.o: /usr/vxworks/vx5.2/h/errno.h /usr/vxworks/vx5.2/h/memLib.h
test_compass.o: /usr/vxworks/vx5.2/h/private/objLibP.h
test_compass.o: /usr/vxworks/vx5.2/h/private/classLibP.h
test_compass.o: ../../include/common/nomad_types.h
test_compass.o: /user/rti/scope/include/vx/scopeprobe.h
test_compass.o: /user/rti/rtilib/include/share/rtilib/rti_types.h
test_compass.o: /usr/vxworks/vx5.2/h/taskLib.h /usr/vxworks/vx5.2/h/qLib.h
test_compass.o: /usr/vxworks/vx5.2/h/qClass.h /usr/vxworks/vx5.2/h/regs.h
test_compass.o: /usr/vxworks/vx5.2/h/excLib.h
test_compass.o: /usr/vxworks/vx5.2/h/private/eventP.h
test_compass.o: /usr/vxworks/vx5.2/h/private/semLibP.h
test_compass.o: /usr/vxworks/vx5.2/h/semLib.h /usr/vxworks/vx5.2/h/stdlib.h
test_compass.o: /usr/vxworks/vx5.2/h/usrLib.h /usr/vxworks/vx5.2/h/fppLib.h
test_compass.o: /usr/vxworks/vx5.2/h/moduleLib.h
test_compass.o: /usr/vxworks/vx5.2/h/dllLib.h /usr/vxworks/vx5.2/h/sllLib.h
test_compass.o: /usr/vxworks/vx5.2/h/limits.h /usr/vxworks/vx5.2/h/sys/stat.h
test_compass.o: ../../include/modules/pointing/point.h
test_compass.o: ../../include/components/amps/amps.h
test_compass.o: ../../include/interfaces/encoder/encoder.h
test_compass.o: ../../include/devices/devices.h
test_compass.o: ../../include/interfaces/adc/adc.h
test_compass.o: ../../include/interfaces/dac/dac.h
test_compass.o: ../../include/interfaces/di/di.h
test_compass.o: ../../include/interfaces/do/do.h
test_compass.o: ../../include/components/pid/pid.h
test_compass.o: ../../include/components/traject/traject.h
test_dac.o: test_dac.h ../../include/interfaces/dac/dac.h
test_dac.o: ../../include/common/nomad_global.h
test_dac.o: /usr/vxworks/vx5.2/h/vxWorks.h /usr/vxworks/vx5.2/h/types/vxCpu.h
test_dac.o: /usr/vxworks/vx5.2/h/types/vxArch.h
test_dac.o: /usr/vxworks/vx5.2/h/types/vxParams.h
test_dac.o: /usr/vxworks/vx5.2/h/types/vxTypesBase.h
test_dac.o: /usr/vxworks/vx5.2/h/types/vxTypes.h
test_dac.o: /usr/vxworks/vx5.2/h/types/vxANSI.h
test_dac.o: /usr/vxworks/vx5.2/h/types/vxTypesOld.h
test_dac.o: /usr/vxworks/vx5.2/h/sys/types.h /usr/vxworks/vx5.2/h/sysLib.h
test_dac.o: /usr/vxworks/vx5.2/h/bootLib.h /usr/vxworks/vx5.2/h/vme.h
test_dac.o: /usr/vxworks/vx5.2/h/stdioLib.h /usr/vxworks/vx5.2/h/stdio.h
test_dac.o: /usr/vxworks/vx5.2/h/classLib.h /usr/vxworks/vx5.2/h/vwModNum.h
test_dac.o: /usr/vxworks/vx5.2/h/objLib.h /usr/vxworks/vx5.2/h/errno.h
test_dac.o: /usr/vxworks/vx5.2/h/memLib.h
test_dac.o: /usr/vxworks/vx5.2/h/private/objLibP.h
test_dac.o: /usr/vxworks/vx5.2/h/private/classLibP.h
test_dac.o: ../../include/common/nomad_types.h
test_dac.o: ../../include/devices/devices.h
test_dac.o: /user/rti/scope/include/vx/scopeprobe.h
test_dac.o: /user/rti/rtilib/include/share/rtilib/rti_types.h
test_dac.o: /usr/vxworks/vx5.2/h/taskLib.h /usr/vxworks/vx5.2/h/qLib.h
test_dac.o: /usr/vxworks/vx5.2/h/qClass.h /usr/vxworks/vx5.2/h/regs.h
test_dac.o: /usr/vxworks/vx5.2/h/excLib.h
test_dac.o: /usr/vxworks/vx5.2/h/private/eventP.h
test_dac.o: /usr/vxworks/vx5.2/h/private/semLibP.h
test_dac.o: /usr/vxworks/vx5.2/h/semLib.h /usr/vxworks/vx5.2/h/stdlib.h
test_di.o: test_di.h ../../include/interfaces/di/di.h
test_di.o: ../../include/common/nomad_global.h /usr/vxworks/vx5.2/h/vxWorks.h
test_di.o: /usr/vxworks/vx5.2/h/types/vxCpu.h
test_di.o: /usr/vxworks/vx5.2/h/types/vxArch.h
test_di.o: /usr/vxworks/vx5.2/h/types/vxParams.h
test_di.o: /usr/vxworks/vx5.2/h/types/vxTypesBase.h
test_di.o: /usr/vxworks/vx5.2/h/types/vxTypes.h
test_di.o: /usr/vxworks/vx5.2/h/types/vxANSI.h
test_di.o: /usr/vxworks/vx5.2/h/types/vxTypesOld.h
test_di.o: /usr/vxworks/vx5.2/h/sys/types.h /usr/vxworks/vx5.2/h/sysLib.h
test_di.o: /usr/vxworks/vx5.2/h/bootLib.h /usr/vxworks/vx5.2/h/vme.h
test_di.o: /usr/vxworks/vx5.2/h/stdioLib.h /usr/vxworks/vx5.2/h/stdio.h
test_di.o: /usr/vxworks/vx5.2/h/classLib.h /usr/vxworks/vx5.2/h/vwModNum.h
test_di.o: /usr/vxworks/vx5.2/h/objLib.h /usr/vxworks/vx5.2/h/errno.h
test_di.o: /usr/vxworks/vx5.2/h/memLib.h
test_di.o: /usr/vxworks/vx5.2/h/private/objLibP.h
test_di.o: /usr/vxworks/vx5.2/h/private/classLibP.h
test_di.o: ../../include/common/nomad_types.h ../../include/devices/devices.h
test_di.o: /user/rti/scope/include/vx/scopeprobe.h
test_di.o: /user/rti/rtilib/include/share/rtilib/rti_types.h
test_di.o: /usr/vxworks/vx5.2/h/taskLib.h /usr/vxworks/vx5.2/h/qLib.h
test_di.o: /usr/vxworks/vx5.2/h/qClass.h /usr/vxworks/vx5.2/h/regs.h
test_di.o: /usr/vxworks/vx5.2/h/excLib.h
test_di.o: /usr/vxworks/vx5.2/h/private/eventP.h
test_di.o: /usr/vxworks/vx5.2/h/private/semLibP.h
test_di.o: /usr/vxworks/vx5.2/h/semLib.h /usr/vxworks/vx5.2/h/stdlib.h
test_do.o: test_do.h ../../include/interfaces/do/do.h
test_do.o: ../../include/common/nomad_global.h /usr/vxworks/vx5.2/h/vxWorks.h
test_do.o: /usr/vxworks/vx5.2/h/types/vxCpu.h
test_do.o: /usr/vxworks/vx5.2/h/types/vxArch.h
test_do.o: /usr/vxworks/vx5.2/h/types/vxParams.h
test_do.o: /usr/vxworks/vx5.2/h/types/vxTypesBase.h
test_do.o: /usr/vxworks/vx5.2/h/types/vxTypes.h
test_do.o: /usr/vxworks/vx5.2/h/types/vxANSI.h
test_do.o: /usr/vxworks/vx5.2/h/types/vxTypesOld.h
test_do.o: /usr/vxworks/vx5.2/h/sys/types.h /usr/vxworks/vx5.2/h/sysLib.h
test_do.o: /usr/vxworks/vx5.2/h/bootLib.h /usr/vxworks/vx5.2/h/vme.h
test_do.o: /usr/vxworks/vx5.2/h/stdioLib.h /usr/vxworks/vx5.2/h/stdio.h
test_do.o: /usr/vxworks/vx5.2/h/classLib.h /usr/vxworks/vx5.2/h/vwModNum.h
test_do.o: /usr/vxworks/vx5.2/h/objLib.h /usr/vxworks/vx5.2/h/errno.h
test_do.o: /usr/vxworks/vx5.2/h/memLib.h
test_do.o: /usr/vxworks/vx5.2/h/private/objLibP.h
test_do.o: /usr/vxworks/vx5.2/h/private/classLibP.h
test_do.o: ../../include/common/nomad_types.h ../../include/devices/devices.h
test_do.o: /user/rti/scope/include/vx/scopeprobe.h
test_do.o: /user/rti/rtilib/include/share/rtilib/rti_types.h
test_do.o: /usr/vxworks/vx5.2/h/taskLib.h /usr/vxworks/vx5.2/h/qLib.h
test_do.o: /usr/vxworks/vx5.2/h/qClass.h /usr/vxworks/vx5.2/h/regs.h
test_do.o: /usr/vxworks/vx5.2/h/excLib.h
test_do.o: /usr/vxworks/vx5.2/h/private/eventP.h
test_do.o: /usr/vxworks/vx5.2/h/private/semLibP.h
test_do.o: /usr/vxworks/vx5.2/h/semLib.h /usr/vxworks/vx5.2/h/stdlib.h
test_drive.o: test_drive.h ../../include/modules/drive/drive.h
test_drive.o: ../../include/common/nomad_global.h
test_drive.o: /usr/vxworks/vx5.2/h/vxWorks.h
test_drive.o: /usr/vxworks/vx5.2/h/types/vxCpu.h
test_drive.o: /usr/vxworks/vx5.2/h/types/vxArch.h
test_drive.o: /usr/vxworks/vx5.2/h/types/vxParams.h
test_drive.o: /usr/vxworks/vx5.2/h/types/vxTypesBase.h
test_drive.o: /usr/vxworks/vx5.2/h/types/vxTypes.h
test_drive.o: /usr/vxworks/vx5.2/h/types/vxANSI.h
test_drive.o: /usr/vxworks/vx5.2/h/types/vxTypesOld.h
test_drive.o: /usr/vxworks/vx5.2/h/sys/types.h /usr/vxworks/vx5.2/h/sysLib.h
test_drive.o: /usr/vxworks/vx5.2/h/bootLib.h /usr/vxworks/vx5.2/h/vme.h
test_drive.o: /usr/vxworks/vx5.2/h/stdioLib.h /usr/vxworks/vx5.2/h/stdio.h
test_drive.o: /usr/vxworks/vx5.2/h/classLib.h /usr/vxworks/vx5.2/h/vwModNum.h
test_drive.o: /usr/vxworks/vx5.2/h/objLib.h /usr/vxworks/vx5.2/h/errno.h
test_drive.o: /usr/vxworks/vx5.2/h/memLib.h
test_drive.o: /usr/vxworks/vx5.2/h/private/objLibP.h
test_drive.o: /usr/vxworks/vx5.2/h/private/classLibP.h
test_drive.o: ../../include/common/nomad_types.h
test_drive.o: ../../include/components/amps/amps.h
test_drive.o: ../../include/interfaces/encoder/encoder.h
test_drive.o: ../../include/devices/devices.h
test_drive.o: ../../include/interfaces/adc/adc.h
test_drive.o: ../../include/interfaces/dac/dac.h
test_drive.o: ../../include/interfaces/di/di.h
test_drive.o: ../../include/interfaces/do/do.h
test_drive.o: ../../include/components/pid/pid.h
test_drive.o: ../../include/components/traject/traject.h
test_drive.o: /usr/vxworks/vx5.2/h/semLib.h
test_drive.o: ../../include/modules/drive/drivesys.h
test_drive.o: ../../include/modules/drive/drive.h
test_drive.o: /user/rti/scope/include/vx/scopeprobe.h
test_drive.o: /user/rti/rtilib/include/share/rtilib/rti_types.h
test_drive.o: /usr/vxworks/vx5.2/h/taskLib.h /usr/vxworks/vx5.2/h/qLib.h
test_drive.o: /usr/vxworks/vx5.2/h/qClass.h /usr/vxworks/vx5.2/h/regs.h
test_drive.o: /usr/vxworks/vx5.2/h/excLib.h
test_drive.o: /usr/vxworks/vx5.2/h/private/eventP.h
test_drive.o: /usr/vxworks/vx5.2/h/private/semLibP.h
test_drive.o: /usr/vxworks/vx5.2/h/stdlib.h /usr/vxworks/vx5.2/h/vxLib.h
test_drive.o: /usr/vxworks/vx5.2/h/usrLib.h /usr/vxworks/vx5.2/h/fppLib.h
test_drive.o: /usr/vxworks/vx5.2/h/moduleLib.h /usr/vxworks/vx5.2/h/dllLib.h
test_drive.o: /usr/vxworks/vx5.2/h/sllLib.h /usr/vxworks/vx5.2/h/limits.h
test_drive.o: /usr/vxworks/vx5.2/h/sys/stat.h /usr/vxworks/vx5.2/h/logLib.h
test_enc.o: test_enc.h ../../include/interfaces/encoder/encoder.h
test_enc.o: ../../include/common/nomad_global.h
test_enc.o: /usr/vxworks/vx5.2/h/vxWorks.h /usr/vxworks/vx5.2/h/types/vxCpu.h
test_enc.o: /usr/vxworks/vx5.2/h/types/vxArch.h
test_enc.o: /usr/vxworks/vx5.2/h/types/vxParams.h
test_enc.o: /usr/vxworks/vx5.2/h/types/vxTypesBase.h
test_enc.o: /usr/vxworks/vx5.2/h/types/vxTypes.h
test_enc.o: /usr/vxworks/vx5.2/h/types/vxANSI.h
test_enc.o: /usr/vxworks/vx5.2/h/types/vxTypesOld.h
test_enc.o: /usr/vxworks/vx5.2/h/sys/types.h /usr/vxworks/vx5.2/h/sysLib.h
test_enc.o: /usr/vxworks/vx5.2/h/bootLib.h /usr/vxworks/vx5.2/h/vme.h
test_enc.o: /usr/vxworks/vx5.2/h/stdioLib.h /usr/vxworks/vx5.2/h/stdio.h
test_enc.o: /usr/vxworks/vx5.2/h/classLib.h /usr/vxworks/vx5.2/h/vwModNum.h
test_enc.o: /usr/vxworks/vx5.2/h/objLib.h /usr/vxworks/vx5.2/h/errno.h
test_enc.o: /usr/vxworks/vx5.2/h/memLib.h
test_enc.o: /usr/vxworks/vx5.2/h/private/objLibP.h
test_enc.o: /usr/vxworks/vx5.2/h/private/classLibP.h
test_enc.o: ../../include/common/nomad_types.h
test_enc.o: ../../include/devices/devices.h
test_enc.o: /user/rti/scope/include/vx/scopeprobe.h
test_enc.o: /user/rti/rtilib/include/share/rtilib/rti_types.h
test_enc.o: /usr/vxworks/vx5.2/h/taskLib.h /usr/vxworks/vx5.2/h/qLib.h
test_enc.o: /usr/vxworks/vx5.2/h/qClass.h /usr/vxworks/vx5.2/h/regs.h
test_enc.o: /usr/vxworks/vx5.2/h/excLib.h
test_enc.o: /usr/vxworks/vx5.2/h/private/eventP.h
test_enc.o: /usr/vxworks/vx5.2/h/private/semLibP.h
test_enc.o: /usr/vxworks/vx5.2/h/semLib.h /usr/vxworks/vx5.2/h/stdlib.h
test_point.o: test_point.h ../../include/modules/pointing/point.h
test_point.o: ../../include/common/nomad_global.h
test_point.o: /usr/vxworks/vx5.2/h/vxWorks.h
test_point.o: /usr/vxworks/vx5.2/h/types/vxCpu.h
test_point.o: /usr/vxworks/vx5.2/h/types/vxArch.h
test_point.o: /usr/vxworks/vx5.2/h/types/vxParams.h
test_point.o: /usr/vxworks/vx5.2/h/types/vxTypesBase.h
test_point.o: /usr/vxworks/vx5.2/h/types/vxTypes.h
test_point.o: /usr/vxworks/vx5.2/h/types/vxANSI.h
test_point.o: /usr/vxworks/vx5.2/h/types/vxTypesOld.h
test_point.o: /usr/vxworks/vx5.2/h/sys/types.h /usr/vxworks/vx5.2/h/sysLib.h
test_point.o: /usr/vxworks/vx5.2/h/bootLib.h /usr/vxworks/vx5.2/h/vme.h
test_point.o: /usr/vxworks/vx5.2/h/stdioLib.h /usr/vxworks/vx5.2/h/stdio.h
test_point.o: /usr/vxworks/vx5.2/h/classLib.h /usr/vxworks/vx5.2/h/vwModNum.h
test_point.o: /usr/vxworks/vx5.2/h/objLib.h /usr/vxworks/vx5.2/h/errno.h
test_point.o: /usr/vxworks/vx5.2/h/memLib.h
test_point.o: /usr/vxworks/vx5.2/h/private/objLibP.h
test_point.o: /usr/vxworks/vx5.2/h/private/classLibP.h
test_point.o: ../../include/common/nomad_types.h
test_point.o: ../../include/components/amps/amps.h
test_point.o: ../../include/interfaces/encoder/encoder.h
test_point.o: ../../include/devices/devices.h
test_point.o: ../../include/interfaces/adc/adc.h
test_point.o: ../../include/interfaces/dac/dac.h
test_point.o: ../../include/interfaces/di/di.h
test_point.o: ../../include/interfaces/do/do.h
test_point.o: ../../include/components/pid/pid.h
test_point.o: ../../include/components/traject/traject.h
test_point.o: /usr/vxworks/vx5.2/h/semLib.h
test_point.o: /user/rti/scope/include/vx/scopeprobe.h
test_point.o: /user/rti/rtilib/include/share/rtilib/rti_types.h
test_point.o: /usr/vxworks/vx5.2/h/taskLib.h /usr/vxworks/vx5.2/h/qLib.h
test_point.o: /usr/vxworks/vx5.2/h/qClass.h /usr/vxworks/vx5.2/h/regs.h
test_point.o: /usr/vxworks/vx5.2/h/excLib.h
test_point.o: /usr/vxworks/vx5.2/h/private/eventP.h
test_point.o: /usr/vxworks/vx5.2/h/private/semLibP.h
test_point.o: /usr/vxworks/vx5.2/h/stdlib.h /usr/vxworks/vx5.2/h/vxLib.h
test_point.o: /usr/vxworks/vx5.2/h/usrLib.h /usr/vxworks/vx5.2/h/fppLib.h
test_point.o: /usr/vxworks/vx5.2/h/moduleLib.h /usr/vxworks/vx5.2/h/dllLib.h
test_point.o: /usr/vxworks/vx5.2/h/sllLib.h /usr/vxworks/vx5.2/h/limits.h
test_point.o: /usr/vxworks/vx5.2/h/sys/stat.h /usr/vxworks/vx5.2/h/logLib.h
test_relay.o: test_relay.h ../../include/interfaces/relay/relay.h
test_relay.o: ../../include/common/nomad_global.h
test_relay.o: /usr/vxworks/vx5.2/h/vxWorks.h
test_relay.o: /usr/vxworks/vx5.2/h/types/vxCpu.h
test_relay.o: /usr/vxworks/vx5.2/h/types/vxArch.h
test_relay.o: /usr/vxworks/vx5.2/h/types/vxParams.h
test_relay.o: /usr/vxworks/vx5.2/h/types/vxTypesBase.h
test_relay.o: /usr/vxworks/vx5.2/h/types/vxTypes.h
test_relay.o: /usr/vxworks/vx5.2/h/types/vxANSI.h
test_relay.o: /usr/vxworks/vx5.2/h/types/vxTypesOld.h
test_relay.o: /usr/vxworks/vx5.2/h/sys/types.h /usr/vxworks/vx5.2/h/sysLib.h
test_relay.o: /usr/vxworks/vx5.2/h/bootLib.h /usr/vxworks/vx5.2/h/vme.h
test_relay.o: /usr/vxworks/vx5.2/h/stdioLib.h /usr/vxworks/vx5.2/h/stdio.h
test_relay.o: /usr/vxworks/vx5.2/h/classLib.h /usr/vxworks/vx5.2/h/vwModNum.h
test_relay.o: /usr/vxworks/vx5.2/h/objLib.h /usr/vxworks/vx5.2/h/errno.h
test_relay.o: /usr/vxworks/vx5.2/h/memLib.h
test_relay.o: /usr/vxworks/vx5.2/h/private/objLibP.h
test_relay.o: /usr/vxworks/vx5.2/h/private/classLibP.h
test_relay.o: ../../include/common/nomad_types.h
test_relay.o: ../../include/devices/devices.h
test_relay.o: /user/rti/scope/include/vx/scopeprobe.h
test_relay.o: /user/rti/rtilib/include/share/rtilib/rti_types.h
test_relay.o: /usr/vxworks/vx5.2/h/taskLib.h /usr/vxworks/vx5.2/h/qLib.h
test_relay.o: /usr/vxworks/vx5.2/h/qClass.h /usr/vxworks/vx5.2/h/regs.h
test_relay.o: /usr/vxworks/vx5.2/h/excLib.h
test_relay.o: /usr/vxworks/vx5.2/h/private/eventP.h
test_relay.o: /usr/vxworks/vx5.2/h/private/semLibP.h
test_relay.o: /usr/vxworks/vx5.2/h/semLib.h /usr/vxworks/vx5.2/h/stdlib.h
