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) 1989,1998-1999 by Sun Microsystems, Inc. 24# All rights reserved. 25# 26#pragma ident "%Z%%M% %I% %E% SMI" 27# 28# lib/libmalloc/Makefile 29# 30 31include ../Makefile.lib 32 33SUBDIRS= spec .WAIT $(MACH) $(BUILD64) $(MACH64) 34 35all := TARGET= all 36clean := TARGET= clean 37clobber := TARGET= clobber 38delete := TARGET= delete 39install := TARGET= install 40lint := TARGET= lint 41_msg := TARGET= _msg 42package := TARGET= package 43 44LIBRARY= libmalloc.a 45TEXT_DOMAIN= SUNW_OST_OSLIB 46XGETFLAGS= -a 47POFILE= $(LIBRARY:.a=.po) 48POFILES= generic.po 49 50SED= sed 51GREP= grep 52CP= cp 53 54.KEEP_STATE: 55 56all clean clobber delete install lint package: $(SUBDIRS) 57 58# definitions for install_h target 59HDRS= ../common/mallint.h 60ROOTHDRDIR= $(ROOT)/usr/include 61ROOTHDRS= $(HDRS:%=$(ROOTHDRDIR)/%) 62CHECKHDRS= $(HDRS:%.h=%.check) 63 64# install rule for install_h target 65$(ROOTHDRDIR)/%: % 66 $(INS.file) 67 68install_h: $(ROOTHDRS) 69 70check: $(CHECKHDRS) 71 72$(MACH) $(MACH64) spec: FRC 73 @cd $@; pwd; $(MAKE) $(TARGET) 74 75_msg: $(MSGDOMAIN) $(POFILE) 76 $(RM) $(MSGDOMAIN)/$(POFILE) 77 $(CP) $(POFILE) $(MSGDOMAIN) 78 79$(POFILE): $(POFILES) 80 $(RM) $@ 81 $(CAT) $(POFILES) > $@ 82 83$(POFILES): 84 $(RM) messages.po 85 $(XGETTEXT) $(XGETFLAGS) *.[ch]* */*.[ch]* 86 $(SED) -e '/^# msg/d' -e '/^domain/d' messages.po > $@ 87 $(RM) messages.po 88 89$(MSGDOMAIN): 90 $(INS.dir) 91 92FRC: 93 94