head     1.1;
branch   ;
access   ;
symbols  ;
locks    ; strict;
comment  @# @;


1.1
date     89.10.24.10.35.54;  author wbn;  state Exp;
branches ;
next     ;


desc
@Display program Makefile - compiles, links, installs and cleans.
@



1.1
log
@Initial revision
@
text
@#
#	Internet Rover Makefile		WB Norton    	4/17/89
#					Merit Computer Network
#					Version 1.0
#   Make Definitions file for the Internet Rover Problem Display Program
#
#VPATH = ../MISC
BIN = ../BIN

Display: Display.o ../MISC/misc.o ../MISC/fileio.o
	cc -o Display Display.o ../MISC/misc.o ../MISC/fileio.o -lcurses -ltermcap
	cp Display $(BIN)

clean:
	-rm *.o
	-rm Display 

install: 
	cp Display $(BIN)/Display
	chmod 755 Display 

@
