#
# Itsy SA1100 Profiling Applications: Alpha Builds
# Copyright (c) Compaq Computer Corporation, 1999
#
# Use consistent with the GNU GPL is permitted,
# provided that this copyright notice is
# preserved in its entirety in all copies and derived works.
#
# COMPAQ COMPUTER CORPORATION MAKES NO WARRANTIES, EXPRESSED OR IMPLIED,
# AS TO THE USEFULNESS OR CORRECTNESS OF THIS CODE OR ITS
# FITNESS FOR ANY PARTICULAR PURPOSE.
#
# Author: Carl Waldspurger
#

BINS =  imageid
OBJS =  ihash.o imageid.o
INCS =	-I../../../include

VPATH	= .:..
CC	= cc
CFLAGS	= -O ${INCS}

all:	${BINS}

imageid:	imageid.o ihash.o
		${CC} -o $@ imageid.o ihash.o

clean:
	/bin/rm -f ${BINS} ${OBJS}
