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