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


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


desc
@Makefile to make all of this 
@



1.1
log
@Initial revision
@
text
@#
#	Internet Rover Makefile		WB Norton    	4/17/89
#					Merit Computer Network
#					Version 1.0
#	Main Make File
#
DIRS = MISC PINGKY DISPLAY
CFLAGS =

all:
	@@-for i in $(DIRS) ; do \
		cd $$i ; \
		make CFLAGS="$(CFLAGS)" ; \
		cd .. ; \
	done

print:
	@@-for i in $(DIRS) ; do \
		cd $$i ; \
		lpr -Pnext *.c *.h ; \
		cd .. ; \
	done

	
clean:
	@@-for i in $(DIRS) ; do \
		cd $$i ; \
		make clean ; \
		cd .. ; \
	done

install:
	@@-for i in $(DIRS) ; do \
		cd $$i ; \
		make install; \
		cd .. ; \
	done
@
