Makefile revision 24da5b34f49324ed742a340010ed5bd3d4e06625
287N/A#
287N/A# CDDL HEADER START
1276N/A#
287N/A# The contents of this file are subject to the terms of the
1551N/A# Common Development and Distribution License (the "License").
287N/A# You may not use this file except in compliance with the License.
287N/A#
919N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
919N/A# or http://www.opensolaris.org/os/licensing.
919N/A# See the License for the specific language governing permissions
919N/A# and limitations under the License.
919N/A#
919N/A# When distributing Covered Code, include this CDDL HEADER in each
919N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
919N/A# If applicable, add the following below this CDDL HEADER, with the
919N/A# fields enclosed by brackets "[]" replaced with your own identifying
919N/A# information: Portions Copyright [yyyy] [name of copyright owner]
919N/A#
919N/A# CDDL HEADER END
919N/A#
919N/A#
919N/A# ident "%Z%%M% %I% %E% SMI"
919N/A#
919N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
287N/A# Use is subject to license terms.
287N/A#
287N/A
287N/APROG= tic
493N/A
287N/AOBJS= \
287N/A tic_captab.o \
1408N/A tic_error.o \
287N/A tic_hash.o \
911N/A tic_main.o \
1408N/A tic_parse.o \
1408N/A tic_read.o \
1408N/A tic_scan.o
911N/A
287N/ASRCS= $(OBJS:%.o=%.c)
493N/A
287N/Ainclude ../Makefile.cmd
287N/A
1408N/ALDLIBS += -lcurses
287N/ACPPFLAGS += -I../../lib/libcurses/screen
287N/AMAPFILE = $(MAPFILE.INT) $(MAPFILE.NGB)
287N/ALDFLAGS += $(MAPFILES:%=-M%)
287N/A
970N/A.KEEP_STATE:
970N/A
970N/Aall: $(PROG)
970N/A
287N/A$(PROG): $(OBJS) $(MAPFILES)
287N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
493N/A $(POST_PROCESS)
969N/A
287N/A$(POFILE): $(POFILES)
1551N/A $(RM) $@
1551N/A cat $(POFILES) > $@
1551N/A
287N/A
287N/Ainstall: all $(ROOTPROG)
287N/A
287N/Aclean:
970N/A $(RM) $(OBJS)
992N/A
970N/Alint: lint_SRCS
287N/A
include ../Makefile.targ