head     1.1;
branch   ;
access   ;
symbols  ;
locks    bin:1.1;
comment  @# @;


1.1
date     93.08.10.12.40.16;  author bin;  state Exp;
branches ;
next     ;


desc
@@



1.1
log
@Initial revision
@
text
@# Simple Coherent makefile for echo driver

INSTALL_DIR=..

all: $(INSTALL_DIR)/Driver.o

$(INSTALL_DIR)/Driver.o: echo.c
	$(CC) $(CFLAGS) -o $(INSTALL_DIR)/Driver.o -c echo.c

install:

clean:
	rm -f $(INSTALL_DIR)/Driver.o
@
