view conf/makefiles/papers @ 12:441a2190cfae

Lion fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 21 Apr 2012 13:10:49 +0900
parents bce86c4163a3
children
line wrap: on
line source

##############################################################################
#    Instructions to Make, for compilation of MH papers
#
#	@(MHWARNING)
# @(#)$Id: papers,v 1.1.1.1 2005/04/18 14:46:03 kono Exp $
##############################################################################

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

DIRS	=	bboards beginners changes mh4 mh4mm mh5 mh6.5 \
		multifarious mznet realwork trusted tutorial


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

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

unconfig:	distribution
		-rm -f Makefile

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

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

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