Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
486N/A#
486N/A# CDDL HEADER START
486N/A#
486N/A# The contents of this file are subject to the terms of the
486N/A# Common Development and Distribution License (the "License").
486N/A# You may not use this file except in compliance with the License.
486N/A#
486N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
486N/A# or http://www.opensolaris.org/os/licensing.
486N/A# See the License for the specific language governing permissions
486N/A# and limitations under the License.
486N/A#
486N/A# When distributing Covered Code, include this CDDL HEADER in each
486N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
486N/A# If applicable, add the following below this CDDL HEADER, with the
486N/A# fields enclosed by brackets "[]" replaced with your own identifying
486N/A# information: Portions Copyright [yyyy] [name of copyright owner]
486N/A#
486N/A# CDDL HEADER END
873N/A#
486N/A#
486N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
486N/A# Use is subject to license terms.
486N/A#
486N/A
3233N/APROG= tic
486N/A
486N/AOBJS= \
619N/A tic_captab.o \
619N/A tic_error.o \
619N/A tic_hash.o \
619N/A tic_main.o \
619N/A tic_parse.o \
3488N/A tic_read.o \
619N/A tic_scan.o
619N/A
619N/ASRCS= $(OBJS:%.o=%.c)
3824N/A
3824N/Ainclude ../Makefile.cmd
3824N/A
619N/ALDLIBS += -lcurses
619N/ACPPFLAGS += -I../../lib/libcurses/screen
486N/AMAPFILES = $(MAPFILE.INT) $(MAPFILE.NGB)
536N/ALDFLAGS += $(MAPFILES:%=-M%)
2976N/A
2976N/ACERRWARN += -_gcc=-Wno-char-subscripts
536N/ACERRWARN += -_gcc=-Wno-implicit-function-declaration
3972N/ACERRWARN += -_gcc=-Wno-parentheses
3972N/ACERRWARN += -_gcc=-Wno-uninitialized
3972N/A
3972N/A.KEEP_STATE:
3972N/A
3972N/Aall: $(PROG)
3972N/A
3972N/A$(PROG): $(OBJS) $(MAPFILES)
3972N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
3972N/A $(POST_PROCESS)
3972N/A
3972N/A$(POFILE): $(POFILES)
3972N/A $(RM) $@
3972N/A cat $(POFILES) > $@
3972N/A
3972N/A
3972N/Ainstall: all $(ROOTPROG)
3972N/A
3972N/Aclean:
3972N/A $(RM) $(OBJS)
2976N/A
2976N/Alint: lint_SRCS
2976N/A
3860N/Ainclude ../Makefile.targ
3860N/A