# 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.a0036U>
# $Id: Makefile,v 1.7 1997/02/05 10:15:35 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.7 1997/02/05 10:15:35 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.7 1997/02/05 10:15:35 sib Exp $

###########################################################################
# Configured Parameters
# $Id: Makefile,v 1.7 1997/02/05 10:15:35 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.7 1997/02/05 10:15:35 sib Exp $

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

# ############################################################################
#       $Id: Makefile,v 1.7 1997/02/05 10:15:35 sib Exp $
# $Revision: 1.7 $
#     $Date: 1997/02/05 10:15:35 $
#
# (c) Copyright 1994 Carnegie Mellon University. All rights reserved.
#
# PROJECT:	Carnegie Mellon Dante Explorer
#
# FILE:		Imakefile
#		Based on Erebus prototypical Imakefile
#		Imakefile.proto,v 1.7 1994/03/09 19:09:26 jwest Exp
#
# DESCRIPTION:
#	Vmio10, Vmio22, Vmio28, Vmio14 devices
#
# 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.7  1997/02/05  10:15:35  sib
# Got Pointing working.
#
# Revision 1.6  1997/02/04  08:10:11  sib
# Made Trajectory generator work with everything else.
#
# Revision 1.5  1997/01/28  06:49:00  sib
# Got all intefaces working and tested them.
#
# Revision 1.4  1997/01/27  07:35:23  sib
# Got encoder interface totally working.
#
# Revision 1.3  1997/01/24  03:08:36  sib
# Fixed some more of the interfacing problems.
#
# Revision 1.2  1997/01/18  20:53:43  sib
# Modified to get encoder interface completely working
#
# Revision 1.1.1.1  1997/01/15  22:23:49  sib
# Initial cvs import of the vxworks 68k code so far
#
# Revision 1.2  1996/12/23  00:40:44  sib
# Testing out the time difference. Nothing changed here.
#
# Revision 1.1.1.1  1996/12/18  05:51:38  sib
# Software for the Atacama Desert Trek for all computing platforms
#
# ############################################################################
# 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        = devices/vmio

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             = vmio10.o vmio22.o vmio22_cwrap.o vmio28.o vmio28_cwrap.o vmio14.o
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:: vmio10.o

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

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

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

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

bins:: vmio22.o

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

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

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

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

bins:: vmio22_cwrap.o

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

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

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

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

bins:: vmio28.o

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

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

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

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

bins:: vmio28_cwrap.o

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

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

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

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

bins:: vmio14.o

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

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

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

RM_INSTALL_CMD = $(RM)
INSTALL_FILE_LIST += $(INSTALL_DIR)/bin/vmio14.o
$(INSTALL_DIR)/bin/vmio14.o:: vmio14.o
	@if [ ! -d $(INSTALL_DIR)/bin ]; then \
	mkdir -p $(INSTALL_DIR)/bin; \
	fi
	$(INSTALL) -m 555 vmio14.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.

vmio10.o: ../../../include/common/nomad_global.h
vmio10.o: /usr/vxworks/vx5.2/h/vxWorks.h /usr/vxworks/vx5.2/h/types/vxCpu.h
vmio10.o: /usr/vxworks/vx5.2/h/types/vxArch.h
vmio10.o: /usr/vxworks/vx5.2/h/types/vxParams.h
vmio10.o: /usr/vxworks/vx5.2/h/types/vxTypesBase.h
vmio10.o: /usr/vxworks/vx5.2/h/types/vxTypes.h
vmio10.o: /usr/vxworks/vx5.2/h/types/vxANSI.h
vmio10.o: /usr/vxworks/vx5.2/h/types/vxTypesOld.h
vmio10.o: /usr/vxworks/vx5.2/h/sys/types.h /usr/vxworks/vx5.2/h/sysLib.h
vmio10.o: /usr/vxworks/vx5.2/h/bootLib.h /usr/vxworks/vx5.2/h/vme.h
vmio10.o: /usr/vxworks/vx5.2/h/stdioLib.h /usr/vxworks/vx5.2/h/stdio.h
vmio10.o: /usr/vxworks/vx5.2/h/classLib.h /usr/vxworks/vx5.2/h/vwModNum.h
vmio10.o: /usr/vxworks/vx5.2/h/objLib.h /usr/vxworks/vx5.2/h/errno.h
vmio10.o: /usr/vxworks/vx5.2/h/memLib.h
vmio10.o: /usr/vxworks/vx5.2/h/private/objLibP.h
vmio10.o: /usr/vxworks/vx5.2/h/private/classLibP.h
vmio10.o: ../../../include/common/nomad_types.h vmio10.h
vmio10.o: ../../../include/devices/devices.h /usr/vxworks/vx5.2/h/semLib.h
vmio10.o: /usr/vxworks/vx5.2/h/vxLib.h
vmio14.o: ../../../include/common/nomad_global.h
vmio14.o: /usr/vxworks/vx5.2/h/vxWorks.h /usr/vxworks/vx5.2/h/types/vxCpu.h
vmio14.o: /usr/vxworks/vx5.2/h/types/vxArch.h
vmio14.o: /usr/vxworks/vx5.2/h/types/vxParams.h
vmio14.o: /usr/vxworks/vx5.2/h/types/vxTypesBase.h
vmio14.o: /usr/vxworks/vx5.2/h/types/vxTypes.h
vmio14.o: /usr/vxworks/vx5.2/h/types/vxANSI.h
vmio14.o: /usr/vxworks/vx5.2/h/types/vxTypesOld.h
vmio14.o: /usr/vxworks/vx5.2/h/sys/types.h /usr/vxworks/vx5.2/h/sysLib.h
vmio14.o: /usr/vxworks/vx5.2/h/bootLib.h /usr/vxworks/vx5.2/h/vme.h
vmio14.o: /usr/vxworks/vx5.2/h/stdioLib.h /usr/vxworks/vx5.2/h/stdio.h
vmio14.o: /usr/vxworks/vx5.2/h/classLib.h /usr/vxworks/vx5.2/h/vwModNum.h
vmio14.o: /usr/vxworks/vx5.2/h/objLib.h /usr/vxworks/vx5.2/h/errno.h
vmio14.o: /usr/vxworks/vx5.2/h/memLib.h
vmio14.o: /usr/vxworks/vx5.2/h/private/objLibP.h
vmio14.o: /usr/vxworks/vx5.2/h/private/classLibP.h
vmio14.o: ../../../include/common/nomad_types.h vmio14.h vmio10.h
vmio14.o: ../../../include/devices/devices.h /usr/vxworks/vx5.2/h/semLib.h
vmio22.o: ../../../include/common/nomad_global.h
vmio22.o: /usr/vxworks/vx5.2/h/vxWorks.h /usr/vxworks/vx5.2/h/types/vxCpu.h
vmio22.o: /usr/vxworks/vx5.2/h/types/vxArch.h
vmio22.o: /usr/vxworks/vx5.2/h/types/vxParams.h
vmio22.o: /usr/vxworks/vx5.2/h/types/vxTypesBase.h
vmio22.o: /usr/vxworks/vx5.2/h/types/vxTypes.h
vmio22.o: /usr/vxworks/vx5.2/h/types/vxANSI.h
vmio22.o: /usr/vxworks/vx5.2/h/types/vxTypesOld.h
vmio22.o: /usr/vxworks/vx5.2/h/sys/types.h /usr/vxworks/vx5.2/h/sysLib.h
vmio22.o: /usr/vxworks/vx5.2/h/bootLib.h /usr/vxworks/vx5.2/h/vme.h
vmio22.o: /usr/vxworks/vx5.2/h/stdioLib.h /usr/vxworks/vx5.2/h/stdio.h
vmio22.o: /usr/vxworks/vx5.2/h/classLib.h /usr/vxworks/vx5.2/h/vwModNum.h
vmio22.o: /usr/vxworks/vx5.2/h/objLib.h /usr/vxworks/vx5.2/h/errno.h
vmio22.o: /usr/vxworks/vx5.2/h/memLib.h
vmio22.o: /usr/vxworks/vx5.2/h/private/objLibP.h
vmio22.o: /usr/vxworks/vx5.2/h/private/classLibP.h
vmio22.o: ../../../include/common/nomad_types.h vmio22.h vmio10.h
vmio22.o: ../../../include/devices/devices.h /usr/vxworks/vx5.2/h/semLib.h
vmio22.o: ../devices.h
vmio22_cwrap.o: ../../../include/common/nomad_global.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/vxWorks.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/types/vxCpu.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/types/vxArch.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/types/vxParams.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/types/vxTypesBase.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/types/vxTypes.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/types/vxANSI.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/types/vxTypesOld.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/sys/types.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/sysLib.h /usr/vxworks/vx5.2/h/bootLib.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/vme.h /usr/vxworks/vx5.2/h/stdioLib.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/stdio.h /usr/vxworks/vx5.2/h/classLib.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/vwModNum.h /usr/vxworks/vx5.2/h/objLib.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/errno.h /usr/vxworks/vx5.2/h/memLib.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/private/objLibP.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/private/classLibP.h
vmio22_cwrap.o: ../../../include/common/nomad_types.h vmio22.h vmio10.h
vmio22_cwrap.o: ../../../include/devices/devices.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/semLib.h ../devices.h vmio22_cwrap.h
vmio22_cwrap.o: /user/rti/scope/include/vx/scopeprobe.h
vmio22_cwrap.o: /user/rti/rtilib/include/share/rtilib/rti_types.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/taskLib.h /usr/vxworks/vx5.2/h/qLib.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/qClass.h /usr/vxworks/vx5.2/h/regs.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/excLib.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/private/eventP.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/private/semLibP.h
vmio22_cwrap.o: /usr/vxworks/vx5.2/h/stdlib.h
vmio28.o: ../../../include/common/nomad_global.h
vmio28.o: /usr/vxworks/vx5.2/h/vxWorks.h /usr/vxworks/vx5.2/h/types/vxCpu.h
vmio28.o: /usr/vxworks/vx5.2/h/types/vxArch.h
vmio28.o: /usr/vxworks/vx5.2/h/types/vxParams.h
vmio28.o: /usr/vxworks/vx5.2/h/types/vxTypesBase.h
vmio28.o: /usr/vxworks/vx5.2/h/types/vxTypes.h
vmio28.o: /usr/vxworks/vx5.2/h/types/vxANSI.h
vmio28.o: /usr/vxworks/vx5.2/h/types/vxTypesOld.h
vmio28.o: /usr/vxworks/vx5.2/h/sys/types.h /usr/vxworks/vx5.2/h/sysLib.h
vmio28.o: /usr/vxworks/vx5.2/h/bootLib.h /usr/vxworks/vx5.2/h/vme.h
vmio28.o: /usr/vxworks/vx5.2/h/stdioLib.h /usr/vxworks/vx5.2/h/stdio.h
vmio28.o: /usr/vxworks/vx5.2/h/classLib.h /usr/vxworks/vx5.2/h/vwModNum.h
vmio28.o: /usr/vxworks/vx5.2/h/objLib.h /usr/vxworks/vx5.2/h/errno.h
vmio28.o: /usr/vxworks/vx5.2/h/memLib.h
vmio28.o: /usr/vxworks/vx5.2/h/private/objLibP.h
vmio28.o: /usr/vxworks/vx5.2/h/private/classLibP.h
vmio28.o: ../../../include/common/nomad_types.h vmio28.h vmio10.h
vmio28.o: ../../../include/devices/devices.h /usr/vxworks/vx5.2/h/semLib.h
vmio28_cwrap.o: vmio28_cwrap.h ../../../include/common/nomad_global.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/vxWorks.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/types/vxCpu.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/types/vxArch.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/types/vxParams.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/types/vxTypesBase.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/types/vxTypes.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/types/vxANSI.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/types/vxTypesOld.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/sys/types.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/sysLib.h /usr/vxworks/vx5.2/h/bootLib.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/vme.h /usr/vxworks/vx5.2/h/stdioLib.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/stdio.h /usr/vxworks/vx5.2/h/classLib.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/vwModNum.h /usr/vxworks/vx5.2/h/objLib.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/errno.h /usr/vxworks/vx5.2/h/memLib.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/private/objLibP.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/private/classLibP.h
vmio28_cwrap.o: ../../../include/common/nomad_types.h vmio28.h vmio10.h
vmio28_cwrap.o: ../../../include/devices/devices.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/semLib.h
vmio28_cwrap.o: /user/rti/scope/include/vx/scopeprobe.h
vmio28_cwrap.o: /user/rti/rtilib/include/share/rtilib/rti_types.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/taskLib.h /usr/vxworks/vx5.2/h/qLib.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/qClass.h /usr/vxworks/vx5.2/h/regs.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/excLib.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/private/eventP.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/private/semLibP.h
vmio28_cwrap.o: /usr/vxworks/vx5.2/h/stdlib.h
