head     1.2;
branch   ;
access   ;
symbols  ;
locks    wbn:1.2; strict;
comment  @# @;


1.2
date     90.01.16.12.19.00;  author wbn;  state Exp;
branches ;
next     1.1;

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


desc
@Standard Makefile - makes, installs, cleans all pingky related files.
@


1.2
log
@Removed Advisor Pieces
@
text
@#
#	Internet Rover Makefile		WB Norton    	4/17/89
#					Merit Computer Network
#
#   Make Definitions file for the Internet Rover Pinger (Pingky) 
#							(Little Pingger)
#
#VPATH = ../MISC
BIN = ../BIN

pingky: pingky.o netquery.h  ../MISC/fileio.o netquery.o ../MISC/misc.o 
	cc -o pingky pingky.o ../MISC/misc.o ../MISC/fileio.o netquery.o 
	cp pingky $(BIN)/pingky
	chmod 4755 pingky
	cp startup $(BIN)/startup
	chmod 4755 startup

netquery.o: netquery.c netquery.h
	cc -c netquery.c

clean:
	-rm *.o
	-rm pingky
	-rm core

install: 
	cp pingky $(BIN)/pingky
	chmod 4755 pingky
	cp startup $(BIN)/startup
	chmod 4755 startup
@


1.1
log
@Initial revision
@
text
@a16 5
	make advisor

advisor: advisor.o  ../MISC/fileio.o ../MISC/misc.o netquery.o
	cc -o advisor advisor.o ../MISC/misc.o ../MISC/fileio.o netquery.o
	cp advisor $(BIN)/advisor
@
