diff conf/makefiles/mtsM @ 0:bce86c4163a3

Initial revision
author kono
date Mon, 18 Apr 2005 23:46:02 +0900
parents
children 441a2190cfae
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/conf/makefiles/mtsM	Mon Apr 18 23:46:02 2005 +0900
@@ -0,0 +1,55 @@
+##############################################################################
+#    Instructions to Make, for compilation of MTS-specific libraries
+#
+#	@(MHWARNING)
+# @(#)$Id$
+##############################################################################
+
+# The following entries were inserted during MH configuration
+@BEGIN: MHMTS
+MTS	=	mh
+@END: MHMTS
+@BEGIN: MMDFMTS
+MTS	=	mmdf
+@END: MMDFMTS
+@BEGIN: SENDMTS
+MTS	=	sendmail
+@END: SENDMTS
+
+LIB	=	libmts.a
+LLIB	=	llib-lmts
+
+MAKE	=	make DESTDIR=$(DESTDIR) $(MFLAGS)
+SHELL	=	/bin/sh
+
+
+##############################################################################
+#	Generate MTS-specific library
+##############################################################################
+
+ALL	=	$(MTS)
+
+all:;		for d in $(ALL); do (cd $$d; $(MAKE) all); done
+
+depend:;	for d in $(ALL); do (cd $$d; $(MAKE) depend); done
+
+lint:;		for d in $(ALL); do (cd $$d; $(MAKE) lint); done
+
+
+##############################################################################
+#	Miscellaneous tasks
+##############################################################################
+
+DIRS	=	mh mmdf sendmail
+
+unconfig:;	-rm -f $(LIB) $(LLIB)
+		for d in $(DIRS); do (cd $$d; $(MAKE) unconfig); done
+		-rm -f Makefile
+
+distribution:;	-rm -f $(LIB) $(LLIB)
+		for d in $(DIRS); do (cd $$d; $(MAKE) distribution); done
+
+clean:;		-rm -f $(LIB) $(LLIB)
+		for d in $(DIRS); do (cd $$d; $(MAKE) clean); done
+
+unclean:;	for d in $(DIRS); do (cd $$d; $(MAKE) unclean); done