#!/usr/local/gnu/bin/make
#
# History
# -------
# $Log: Makefile,v $
# Revision 1.9  1997/11/10  23:14:31  dieter
# Updated comment so that make depend using gcc has a chance of working.
#
# Revision 1.8  1997/06/24  16:48:31  dieter
# Removed automatically generated dependencies from Makefile
#
# Revision 1.7  1997/06/24  16:38:54  dieter
# Modified Makefile to pickup common targets and macro definitions from
# make.common.
#
# Revision 1.6  1997/06/13  21:56:07  dieter
# Moved system wide defines to config.h
#
# Revision 1.5  1997/05/09  18:08:48  dieter
# Use /bin/pwd to figure out current directory rather than $(PWD)
# variable.  The $(PWD) variable is not set correctly if this Makefile
# is called by a higher level makefile.
#
# Revision 1.4  1997/05/08  19:22:51  dieter
# Moved definition of OUTPUT_FILE to Makefile so it can be defined based
# on the pwd rather than an absolute path.
#
# Revision 1.3  1997/05/08  17:05:51  dieter
# Removed refresh target.  It is now handled by griff's Makefile.refresh.
#
# Revision 1.2  1997/04/11  21:19:42  dieter
# Added the refresh target
#
#

PROG = hello_ran
SRCS= hello.c
OBJS= $(SRCS:.c=.o)

CDEFS=	-DOUTPUT_FILE=\"`pwd`/output\"

include ../make.common

# DO NOT DELETE THIS LINE


