Makefile revision 24fe0b3bf671e123467ce1df0b67cadd3614c8e4
98N/A#
98N/A# CDDL HEADER START
967N/A#
98N/A# The contents of this file are subject to the terms of the
98N/A# Common Development and Distribution License (the "License").
919N/A# You may not use this file except in compliance with the License.
919N/A#
919N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
919N/A# or http://www.opensolaris.org/os/licensing.
919N/A# See the License for the specific language governing permissions
919N/A# and limitations under the License.
919N/A#
919N/A# When distributing Covered Code, include this CDDL HEADER in each
919N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
919N/A# If applicable, add the following below this CDDL HEADER, with the
919N/A# fields enclosed by brackets "[]" replaced with your own identifying
919N/A# information: Portions Copyright [yyyy] [name of copyright owner]
919N/A#
919N/A# CDDL HEADER END
919N/A#
919N/A
919N/A#
98N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
98N/A# Use is subject to license terms.
98N/A#
98N/A# cmd/sendmail/Makefile
810N/A#
810N/A# Makefile for top level sendmail source directory
810N/A#
810N/A
354N/A# static libraries (db, libsm, libsmdb, libsmutil) must be built before
354N/A# src and aux
354N/ASUBDIRS= cf lib db libsm libsmdb libsmutil .WAIT src aux
354N/A
354N/Ainclude ../Makefile.cmd
354N/A
354N/AROOTDIRS= $(ROOT)/var/spool/mqueue $(ROOT)/var/spool/clientmqueue
354N/A$(ROOTDIRS):= DIRMODE = 0750
606N/A$(ROOT)/var/spool/clientmqueue:= DIRMODE = 0770
810N/A
606N/Aall:= TARGET= all
606N/Ainstall:= TARGET= install
354N/Aclean:= TARGET= clean
810N/Aclobber:= TARGET= clobber
824N/Alint:= TARGET= lint
810N/A
830N/A.KEEP_STATE:
1026N/A
810N/Aall clean clobber lint: $(SUBDIRS)
810N/A
810N/Ainstall: $(ROOTDIRS) $(SUBDIRS) $(ROOTMANIFEST) $(ROOTSVCSH)
810N/A
810N/Aall install: THIRDPARTYLICENSE
810N/A
851N/Aclobber: FRC
851N/A $(RM) THIRDPARTYLICENSE
810N/A
810N/A.PARALLEL: $(SUBDIRS)
810N/A
810N/A$(ROOTDIRS):
810N/A $(INS.dir)
851N/A
810N/A$(SUBDIRS): FRC
851N/A @cd $@; pwd; $(MAKE) $(TARGET)
810N/A
810N/ATHIRDPARTYLICENSE: LICENSE db/LICENSE
810N/A $(SED) -n '/SENDMAIL LICENSE/,$$p' LICENSE > $@
810N/A $(ECHO) " " >> $@
810N/A $(SED) -n '/The following are the copyrights/,$$p' db/LICENSE >> $@
810N/A
851N/AFRC:
810N/A