#
#
# History
# -------
# $Log: Makefile,v $
# Revision 1.7  1997/11/10  23:28:56  dieter
# Added two blank lines so that the make denend with gcc will work.
#
# Revision 1.6  1997/06/24  16:54:37  dieter
# Modified Makefile to pickup common targets and macro definitions from
# make.common.
#
# Revision 1.5  1997/06/13  21:56:28  dieter
# Moved system wide defines to config.h
#
# Use /bin/pwd instead of $(PWD) to get the right working directory.
#
# Revision 1.4  1997/05/08  19:31:32  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:45  dieter
# Removed refresh target.  It is now handled by griff's Makefile.refresh.
#
# Revision 1.2  1997/04/11  21:20:40  dieter
# Added the refresh target
#
#

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

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

include ../make.common

# DO NOT DELETE THIS LINE


