1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License, Version 1.0 only 6# (the "License"). You may not use this file except in compliance 7# with the License. 8# 9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10# or http://www.opensolaris.org/os/licensing. 11# See the License for the specific language governing permissions 12# and limitations under the License. 13# 14# When distributing Covered Code, include this CDDL HEADER in each 15# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16# If applicable, add the following below this CDDL HEADER, with the 17# fields enclosed by brackets "[]" replaced with your own identifying 18# information: Portions Copyright [yyyy] [name of copyright owner] 19# 20# CDDL HEADER END 21# 22# 23# Copyright (c) 1999, by Sun Microsystems, Inc. 24# All rights reserved. 25# 26#pragma ident "%Z%%M% %I% %E% SMI" 27# 28# lib/libmail/Makefile 29 30include ../../Makefile.master 31include ../Makefile.lib 32 33SUBDIRS= spec .WAIT $(MACH) $(BUILD64) $(MACH64) 34LINTDIRS= $(MACH) $(BUILD64) $(MACH64) 35 36all := TARGET= all 37clean := TARGET= clean 38clobber := TARGET= clobber 39install := TARGET= install 40lint := TARGET= lint 41_msg := TARGET= _msg 42package := TARGET= package 43 44LIBRARY= libmail.a 45TEXT_DOMAIN= SUNW_OST_OSLIB 46XGETFLAGS= -a 47POFILE= $(LIBRARY:.a=.po) 48POFILES= generic.po 49 50SED= sed 51CP= cp 52 53.KEEP_STATE: 54 55all clean clobber install package: $(SUBDIRS) 56 57lint: $(LINTDIRS) 58 59# definitions for install_h target 60HDRS= maillock.h libmail.h s_string.h 61ROOTHDRDIR= $(ROOT)/usr/include 62ROOTHDRS= $(HDRS:%=$(ROOTHDRDIR)/%) 63 64# install rule for install_h target 65$(ROOTHDRDIR)/%: inc/% 66 $(INS.file) 67 68install_h: $(ROOTHDRS) 69 70# definitions for check 71PUBHDRS= maillock.h 72CHECKHDRS= $(PUBHDRS:%.h=inc/%.check) 73 74check: $(CHECKHDRS) 75 76$(MACH) $(MACH64) spec: FRC 77 @cd $@; pwd; $(MAKE) $(TARGET) 78 79_msg: $(MSGDOMAIN) $(POFILE) 80 $(RM) $(MSGDOMAIN)/$(POFILE) 81 $(CP) $(POFILE) $(MSGDOMAIN) 82 83$(POFILE): $(POFILES) 84 $(RM) $@ 85 $(CAT) $(POFILES) > $@ 86 87$(POFILES): 88 $(RM) messages.po 89 $(XGETTEXT) $(XGETFLAGS) *.[ch]* */*.[ch]* 90 $(SED) -e '/^# msg/d' -e '/^domain/d' messages.po > $@ 91 $(RM) messages.po 92 93FRC: 94