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


1.1
date	97.03.08.17.13.08;	author dholland;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Initial revision
@
text
@# You can do "make SUB=blah" to make only a few, or edit here, or both
# You can also run make directly in the subdirs you want.

SUB =   telnet telnetd

%.build:
	$(MAKE) -C $(patsubst %.build, %, $@@)

%.install:
	$(MAKE) -C $(patsubst %.install, %, $@@) install

%.clean:
	$(MAKE) -C $(patsubst %.clean, %, $@@) clean

all:     $(patsubst %, %.build, $(SUB))
install: $(patsubst %, %.install, $(SUB))
clean:   $(patsubst %, %.clean, $(SUB))
@
