#
# Copyright (c) 1992 Regents of the University of Michigan.
# All rights reserved.
#
# Redistribution and use in source and binary forms are permitted
# provided that this notice is preserved and that due credit is given
# to the University of Michigan at Ann Arbor. The name of the University
# may not be used to endorse or promote products derived from this
# software without specific prior written permission. This software
# is provided ``as is'' without express or implied warranty.
#
# Make Definitions file for the Internet Rover Problem Display Programs
#
SRCS=	day.c
HDRS=
OBJS=	day.o

CFLAGS= -DSTANDALONE ${ACFLAGS}
LDFLAGS= ${ALDFLAGS}

default:
	( cd ../../../.. ; make day )

all: day

install: 
	cp day ${BINDIR}

day: ${OBJS} day.o
	${CC} -o $@ day.o 

clean:
	rm -f *.o core day

depend: ${SRCS}
	mkdep ${CFLAGS} ${SRCS}

tags:
	ctags -t ${SRCS} ${HDRS}

# DO NOT DELETE THIS LINE -- mkdep uses it.
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.



# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
