#
#
# Stingray software download makefile
#
# @(#) $Header: makefile,v 78.1 96/02/08 16:15:43 ssa Exp $
#
# $Source: /hpux/shared/supp//usr/src/cmd/c2400_util/./ncr_sw/src/makefile,v $
#
# $Log:	makefile,v $
# Revision 78.1  96/02/08  16:15:43  16:15:43  ssa (RCS Manager)
# Author: larrym@hpucsb2.cup.hp.com
# Changed the firmware version from 92030503 to ap930702 - Dave Groves.
# 
# Revision 70.4  93/09/27  14:34:59  14:34:59  ssa (RCS Manager)
# Author: larrym@hpucsb2.cup.hp.com
# Changed the version used from 92030502 to 92030503.
# 
# Revision 70.3  93/07/22  12:31:36  12:31:36  ssa (RCS Manager)
# Author: larrym@hpucsb2.cup.hp.com
# Changed c2430_sw to c2430sw to accomidate SARRAY diagnostic needs.
# 
# Revision 70.2  93/07/12  10:41:27  10:41:27  ssa (RCS Manager)
# Author: larrym@hpucsb2.cup.hp.com
# Deleted 700 comments
# 
# Revision 70.1  93/07/12  10:39:50  10:39:50  ssa (RCS Manager)
# Author: larrym@hpucsb2.cup.hp.com
# Initial revision
# 
##########################################################################
#                                                                        #
#  NCR Array software                                                    #
#                                                                        #
#  DESCRIPTION:                                                          #
#                                                                        #
#    This makefile creates the binary object file for the 9307           #
#    firmware version of the NCR disk array.                             #
#                                                                        #
#      Rev 9307   : SCSI-Cascade                                         #
#                                                                        #
#                                                                        #
##########################################################################
SHELL = /bin/sh

HEX = ../hex
BIN = ../bin

all:			Rev_9307		
		

Rev_9307:		$(BIN)/c2430sw


$(BIN)/c2430sw:		$(HEX)/ap930702.afw	 \
			$(BIN)/srec2bin
			$(BIN)/srec2bin $(HEX)/ap930702.afw $(BIN)/c2430sw.tmp
			mv $(BIN)/c2430sw.tmp $(BIN)/c2430sw

$(BIN)/srec2bin:	srec2bin.c
			cc -I. srec2bin.c -o $(BIN)/srec2bin
