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# 23# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26# Copyright (c) 2018, Joyent, Inc. 27 28PROG= stty ttymon ttyadm sttydefs 29XPG4PROG= stty 30 31# the 'stty' objects have to be made in a separate directory 32# since only they are built with the -DEUC flag (see below). 33STTYOBJ= sttyobjs/stty.o sttyobjs/sttytable.o sttyobjs/sttyparse.o 34 35XPG4STTYOBJ= sttyobjs.xpg4/stty.o sttyobjs.xpg4/sttytable.o \ 36 sttyobjs.xpg4/sttyparse.o 37 38TTYMONOBJ= ttymon.o tmglobal.o tmhandler.o tmpmtab.o tmttydefs.o \ 39 tmparse.o tmsig.o tmsac.o tmchild.o tmautobaud.o tmterm.o \ 40 tmutmp.o tmpeek.o tmlog.o tmlock.o tmutil.o tmexpress.o \ 41 sttytable.o sttyparse.o ulockf.o 42 43TTYADMOBJ= ttyadm.o tmutil.o admutil.o 44 45STTYDEFSOBJ= sttydefs.o admutil.o tmttydefs.o tmparse.o sttytable.o \ 46 sttyparse.o 47 48OBJS= $(STTYOBJ) $(XPG4STTYOBJ) $(TTYMONOBJ) $(TTYADMOBJ) $(STTYDEFSOBJ) 49STTYSRC= stty.c sttytable.c sttyparse.c 50TTYMONSRC= $(TTYMONOBJ:%.o=%.c) 51TTYADMSRC= $(TTYADMOBJ:%.o=%.c) 52STTYDEFSSRC= $(STTYDEFSOBJ:%.o=%.c) 53SRCS= $(STTYSRC) $(TTYMONSRC) $(TTYADMSRC) $(STTYDEFSSRC) 54 55.PARALLEL: $(OBJS) $(PROG) 56 57include ../Makefile.cmd 58 59# If machine name and /etc/issue file need to be printed 60# before the service prompt is printed, then: CPPFLAGS += -DSYS_NAME 61# If debug is needed, then: CPPFLAGS += -DDEBUG 62# fix for 1111333 - turn on SYS_NAME so /etc/issue will be read if it exists 63CPPFLAGS += -DSYS_NAME 64$(XPG4):= CPPFLAGS += -DXPG4 65sttydefs := LDLIBS += -lnsl 66ttymon := LDLIBS += -lnsl -lsec -ldevinfo 67 68# Only stty can be built with -DEUC. ttymon will dump core unless further 69# changes are made to it. 70$(STTYOBJ) := CPPFLAGS += -DEUC 71$(XPG4STTYOBJ) := CPPFLAGS += -DEUC 72 73CFLAGS += $(CCVERBOSE) 74LDFLAGS += $(MAPFILE.NGB:%=-Wl,-M%) 75 76CERRWARN += -_gcc=-Wno-parentheses 77CERRWARN += -_gcc=-Wno-unused-variable 78CERRWARN += $(CNOWARN_UNINIT) 79CERRWARN += -_gcc=-Wno-extra 80 81# not linted 82SMATCH=off 83 84# 85# Message catalog 86# 87POFILES= $(STTYOBJ:sttyobjs/%.o=%.po) 88POFILE= ttymon.po 89 90 91LIBSAFD= $(ROOTLIB)/saf 92DIRS= $(LIBSAFD) 93LIBSAF= ttymon 94USRSBINF= sttydefs ttyadm 95BINF= stty 96ROOTLIBF= $(LIBSAF:%=$(LIBSAFD)/%) 97ROOTUSRSBINF= $(USRSBINF:%=$(ROOTUSRSBIN)/%) 98ROOTBINF= $(BINF:%=$(ROOTBIN)/%) 99$(ROOTLIBF) := FILEMODE = 0555 100$(ROOTUSRSBINF) := FILEMODE = 0755 101 102$(LIBSAFD)/% : % 103 $(INS.file) 104 105# /usr/xpg6/bin/stty is a symlink to /usr/bin/stty 106ROOTXPG6SYMLINK= $(ROOTXPG6BIN)/stty 107.KEEP_STATE: 108 109all: $(PROG) $(XPG4) 110 111stty: sttyobjs $(STTYOBJ) $(MAPFILE.NGB) 112 $(LINK.c) $(STTYOBJ) -o $@ $(LDLIBS) 113 $(POST_PROCESS) 114 115stty.xpg4: $(XPG4STTYOBJ) $(MAPFILE.NGB) 116 $(LINK.c) $(XPG4STTYOBJ) -o $@ $(LDLIBS) 117 $(POST_PROCESS) 118 119$(XPG4STTYOBJ): sttyobjs.xpg4 120 121sttyobjs/%.o: %.c 122 $(COMPILE.c) -o $@ $< 123 124sttyobjs.xpg4/%.o: %.c 125 $(COMPILE.c) -o $@ $< 126 127sttyobjs: 128 -@mkdir -p $@ 129 130sttyobjs.xpg4: 131 -@mkdir -p $@ 132 133ttymon: $(TTYMONOBJ) $(MAPFILE.NGB) 134 $(LINK.c) $(TTYMONOBJ) -o $@ $(LDLIBS) -lpam 135 $(POST_PROCESS) 136 137ttyadm: $(TTYADMOBJ) $(MAPFILE.NGB) 138 $(LINK.c) $(TTYADMOBJ) -o $@ $(LDLIBS) 139 $(POST_PROCESS) 140 141sttydefs: $(STTYDEFSOBJ) $(MAPFILE.NGB) 142 $(LINK.c) $(STTYDEFSOBJ) -o $@ $(LDLIBS) 143 $(POST_PROCESS) 144 145install: all $(DIRS) $(ROOTLIBF) $(ROOTUSRSBINF) $(ROOTBINF) \ 146 $(ROOTXPG4PROG) $(ROOTXPG6SYMLINK) 147 -$(RM) $(ROOTETC)/getty 148 -$(SYMLINK) ../usr/lib/saf/ttymon $(ROOTETC)/getty 149 150$(ROOTXPG6SYMLINK): $(ROOTBINF) 151 -$(RM) $@ 152 -$(SYMLINK) ../../bin/$(BINF) $@ 153 154$(POFILE): $(POFILES) 155 $(RM) $@ 156 cat $(POFILES) > $@ 157 158$(DIRS): 159 $(INS.dir) 160 161clean: 162 $(RM) $(OBJS) 163 164include ../Makefile.targ 165