Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License, Version 1.0 only
# (the "License"). You may not use this file except in compliance
# with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# ident "%Z%%M% %I% %E% SMI"
#
# cmd/dispadmin/Makefile
#
PROG= dispadmin
RT= RT$(PROG)
TS= TS$(PROG)
IA= IA$(PROG)
FSS= FSS$(PROG)
FX= FX$(PROG)
PROGS= $(PROG) $(RT) $(TS) $(IA) $(FSS) $(FX)
include ../Makefile.cmd
CFLAGS += $(CCVERBOSE)
ROOTDIR= $(ROOT)/usr/lib/class
ROOTDIRS= $(ROOTDIR) \
$(ROOTDIR)/RT \
$(ROOTDIR)/TS \
$(ROOTDIR)/IA \
$(ROOTDIR)/FSS \
$(ROOTDIR)/FX
ROOTPROG= $(PROG:%=$(ROOTUSRSBIN)/%)
ROOTRT= $(RT:%=$(ROOTDIR)/RT/%)
ROOTTS= $(TS:%=$(ROOTDIR)/TS/%)
ROOTIA= $(IA:%=$(ROOTDIR)/IA/%)
ROOTFSS= $(FSS:%=$(ROOTDIR)/FSS/%)
ROOTFX= $(FX:%=$(ROOTDIR)/FX/%)
GROUP = bin
# this would be simpler if we renamed rtdispadmin.c and tsdispadmin.c
OBJECTS= $(PROG).o rt$(PROG).o ts$(PROG).o ia$(PROG).o \
fss$(PROG).o fx$(PROG).o subr.o
# conditional assignments, because of above names
$(PROG):= OBJ= $(PROG).o
$(RT):= OBJ= rt$(PROG).o
$(TS):= OBJ= ts$(PROG).o
$(IA):= OBJ= ia$(PROG).o
$(FSS):= OBJ= fss$(PROG).o
$(FX):= OBJ= fx$(PROG).o
# install rules
$(ROOTDIR)/% \
$(ROOTDIR)/RT/% \
$(ROOTDIR)/IA/% \
$(ROOTDIR)/TS/% \
$(ROOTDIR)/FSS/% \
$(ROOTDIR)/FX/% : %
$(INS.file)
.KEEP_STATE:
all: $(PROGS)
$(PROGS): $$(OBJ) subr.o
$(LINK.c) -o $@ $(OBJ) subr.o $(LDLIBS)
$(POST_PROCESS)
llib-lsubr.ln: subr.c
$(LINT.c) -y -o subr subr.c
lint := LDLIBS += -L. -lsubr
install: all $(ROOTPROG) $(ROOTRT) $(ROOTTS) $(ROOTIA) $(ROOTFSS) $(ROOTFX)
# Don't re-install directories already installed by Targetdirs
#$(ROOTDIRS):
# $(INS.dir)
clean:
$(RM) $(OBJECTS) $(PROGS) llib-lsubr.ln
lint: llib-lsubr.ln
$(LINT.c) dispadmin.c $(LDLIBS)
$(LINT.c) rtdispadmin.c $(LDLIBS)
$(LINT.c) tsdispadmin.c $(LDLIBS)
$(LINT.c) iadispadmin.c $(LDLIBS)
$(LINT.c) fssdispadmin.c $(LDLIBS)
$(LINT.c) fxdispadmin.c $(LDLIBS)
include ../Makefile.targ