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 2006 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25 26include ../Makefile.lib 27 28SUBDIRS = $(MACH) 29$(BUILD64)SUBDIRS += $(MACH64) 30 31# conditional assignments 32all := TARGET= all 33install := TARGET= install 34clean := TARGET= clean 35clobber := TARGET= clobber 36test := TARGET= test 37 38SCRFILES = screen/keycaps \ 39 screen/curses.h \ 40 screen/keyname.c \ 41 screen/termcap.c \ 42 screen/tifget.c \ 43 screen/tiget.c \ 44 screen/tifnames.c \ 45 screen/tnames.c \ 46 screen/tinames.c \ 47 screen/term.h 48 49# definitions for install_h target 50HDRS= curses.h term.h unctrl.h 51HDRDIR= screen 52 53LIBRARY= libcurses.a 54TEXT_DOMAIN= SUNW_OST_OSLIB 55XGETFLAGS= -a 56MSGDIRS= screen 57POFILE= $(LIBRARY:.a=.po) 58POFILES= generic.po 59CLEANFILES += $(SCRFILES) 60 61# term.h doesn't pass cstyle due to numerous lines exceeding the 80 character 62# limit. maketerm.ed can probably be fixed to prevent this, but it is arguable 63# if this work would ever be worth it. 64# 65screen/term.check := CSTYLE_TAIL = | grep -v "line > 80 characters" | true 66 67.KEEP_STATE: 68 69all: $(SCRFILES) .WAIT $(SUBDIRS) 70 71install: all .WAIT $(SUBDIRS) 72 73clean clobber test: $(SUBDIRS) 74 75install_h: $(ROOTHDRS) 76 77check: $(CHECKHDRS) 78 79scrfiles: $(SCRFILES) 80 81$(SUBDIRS): FRC 82 @cd $@; pwd; $(MAKE) $(TARGET) 83 84ED = ed 85 86screen/curses.h: screen/curses.ed screen/keycaps screen/tmp 87 (cd screen; $(ED) - < curses.ed) 88 89screen/keycaps: screen/caps 90 grep "KEY_" screen/caps > screen/keycaps 91 @if tail -1 screen/keycaps | grep 'KEY_MOUSE' > /dev/null;then :; \ 92 else echo new keys!! must change setkeymap.c; exit 1;fi 93 94screen/keyname.c: screen/keyname.sh screen/keycaps 95 (cd screen; sh keyname.sh) 96 97screen/termcap.c: screen/termcap.ed 98 (cd screen; $(ED) - < termcap.ed) 99 (cd screen; $(RM) bool num str) 100 101screen/tifget.c: screen/tifget.ed 102 (cd screen; $(ED) - < tifget.ed) 103 104screen/tiget.c: screen/tiget.ed 105 (cd screen; $(ED) - < tiget.ed) 106 107screen/tnames.c screen/tinames.c screen/tifnames.c \ 108screen/term.h: screen/maketerm.ed 109 (cd screen; $(ED) - < maketerm.ed) 110 111screen/tmp: 112 rm -rf $@ 113 mkdir $@ 114 115CLEANFILES += \ 116 screen/tmp/keycaps \ 117 screen/tmp/term.h.new1 \ 118 screen/tmp/term.h.new2 119 120_msg: $(MSGDOMAIN) .WAIT $(POFILE) 121 $(RM) $(MSGDOMAIN)/$(POFILE) 122 $(CP) $(POFILE) $(MSGDOMAIN) 123 124$(POFILE): $(POFILES) 125 $(RM) $@ 126 $(CAT) $(POFILES) > $@ 127 128generic.po: 129 $(RM) messages.po 130 $(XGETTEXT) $(XGETFLAGS) `$(GREP) -l gettext *.[ch]* */*.[ch]*` 131 $(SED) -e '/^# msg/d' -e '/^domain/d' messages.po > $@ 132 $(RM) messages.po 133 134FRC: 135 136include ../Makefile.targ 137include $(SRC)/Makefile.msg.targ 138