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 (the "License"). 6 # You may not use this file except in compliance with the License. 7 # 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 # or http://www.opensolaris.org/os/licensing. 10 # See the License for the specific language governing permissions 11 # and limitations under the License. 12 # 13 # When distributing Covered Code, include this CDDL HEADER in each 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 # If applicable, add the following below this CDDL HEADER, with the 16 # fields enclosed by brackets "[]" replaced with your own identifying 17 # information: Portions Copyright [yyyy] [name of copyright owner] 18 # 19 # CDDL HEADER END 20 # 21 # 22 # Copyright 2008 Sun Microsystems, Inc. All rights reserved. 23 # Use is subject to license terms. 24 # 25 # ident "%Z%%M% %I% %E% SMI" 26 # 27 # cmd/print/Makefile 28 # 29 30 include ../Makefile.cmd 31 32 JAVA_SUBDIRS = printmgr 33 34 PRINT_SUBDIRS = \ 35 scripts \ 36 lpget \ 37 lpset \ 38 conv_fix \ 39 printer-info \ 40 ppdmgr \ 41 selector \ 42 bsd-sysv-commands 43 44 SUBDIRS = $(PRINT_SUBDIRS) $(JAVA_SUBDIRS) 45 46 ROOTDIRS = $(ROOTLIB)/print 47 48 all := TARGET= all 49 install := TARGET= install 50 clean := TARGET= clean 51 clobber := TARGET= clobber 52 lint := TARGET= lint 53 strip := TARGET= strip 54 _msg := TARGET = _msg 55 56 # For testing message catalogs 57 _msg_test:= TARGET = _msg_test 58 59 POFILE= print.po 60 61 .KEEP_STATE: 62 63 all install: $(ROOTDIRS) $(SUBDIRS) 64 65 # 66 # We define our own definition for _msg here because most of these 67 # commands have the same PROG names as their counterparts in 68 # cmd/lp. Using the _msg rule defined in Makefile.cmd would 69 # result in clobbering the cmd/lp message files. 70 # To get around this we will define one message file "print.po" 71 # for these commands (except java printmgr). To build 72 # this file we find all of the .c files and run xgettext on them. 73 # Then concatenate this with the scripts.po file. 74 # 75 _msg: $(MSGDOMAIN) scripts $(JAVA_SUBDIRS) 76 @$(RM) $(POFILE) 77 $(XGETTEXT) -s `/bin/find . -type d -name SCCS -prune -o -type f -name '*.c' -print` 78 @/bin/cat messages.po scripts/scripts.po | sed '/domain/d' > $(POFILE) 79 @$(RM) messages.po 80 $(RM) $(MSGDOMAIN)/$(POFILE) 81 /bin/cp $(POFILE) $(MSGDOMAIN) 82 83 # 84 # Create a message file to test with. 85 # 86 _msg_test: scripts 87 @$(RM) $(POFILE) 88 $(XGETTEXT) -s -m "xxx" `/bin/find . -print | grep '\.c$$' | sed '/SCCS/d'` 89 @/bin/cat messages.po scripts/scripts.po | sed '/domain/d' > $(POFILE) 90 echo 'domain "SUNW_OST_OSCMD"' > SUNW_OST_OSCMD.po 91 cat $(POFILE) >> SUNW_OST_OSCMD.po 92 msgfmt SUNW_OST_OSCMD.po 93 @$(RM) messages.po $(POFILE) SUNW_OST_OSCMD.po 94 95 clean strip cstyle lint: $(SUBDIRS) 96 97 clobber: $(SUBDIRS) 98 $(RM) $(POFILE) $(CLOBBERFILES) 99 100 $(ROOTDIRS) $(MSGDOMAIN): 101 $(INS.dir) 102 103 $(SUBDIRS): FRC 104 @cd $@; pwd; $(MAKE) $(TARGET) 105 106 FRC: 107