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


1.2
date     94.08.22.13.01.41;  author cfields;  state Exp;
branches ;
next     1.1;

1.1
date     93.11.11.07.06.57;  author miki;  state Exp;
branches ;
next     ;


desc
@@


1.2
log
@Remove clean from install.
Rename inst-all to install.
Also remove *.o in cleans.
7.7 checkin; changes by miki
@
text
@##############################################################################
#    Instructions to Make, for MH support processes
#
#	@@(MHWARNING)
# @@(#)supportM,v 1.1.1.1 1993/01/30 04:40:16 jtc Exp
##############################################################################

MAKE	=	make DESTDIR=$(DESTDIR) $(MFLAGS)
SHELL	=	/bin/sh

DIRS	=	bboards general pop


##############################################################################
#	Generate MH support processes
##############################################################################

all:;		for d in $(DIRS); do (cd $$d; $(MAKE) all); done

depend:;	for d in $(DIRS); do (cd $$d; $(MAKE) depend); done

lint:;		for d in $(DIRS); do (cd $$d; $(MAKE) lint); done


##############################################################################
#	Installation
##############################################################################

install:;	for d in $(DIRS); do (cd $$d; $(MAKE) install); done


tar:;		@@for d in $(DIRS); \
		    do (cd $$d; $(MAKE) TFLAGS="$(TFLAGS)" tar); done

uninstall:;	for d in $(DIRS); do (cd $$d; $(MAKE) uninstall); done


##############################################################################
#	Miscellaneous tasks
##############################################################################


unconfig:;	-rm -f _* :* core
		for d in $(DIRS); do (cd $$d; $(MAKE) unconfig); done
		-rm -f Makefile

distribution:;	-rm -f _* :*
		for d in $(DIRS); do (cd $$d; $(MAKE) distribution); done

clean:;		-rm -f _* :* *.o core
		for d in $(DIRS); do (cd $$d; $(MAKE) clean); done

unclean:;	-rm -f _* :* core
		for d in $(DIRS); do (cd $$d; $(MAKE) unclean); done
@


1.1
log
@Initial revision
@
text
@d29 1
a29 1
install:	inst-all clean
a30 1
inst-all:;	for d in $(DIRS); do (cd $$d; $(MAKE) inst-all); done
d50 1
a50 1
clean:;		-rm -f _* :* core
@
