diff options
Diffstat (limited to 'usr/src/cmd/avs/ncall/Makefile')
-rw-r--r-- | usr/src/cmd/avs/ncall/Makefile | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/usr/src/cmd/avs/ncall/Makefile b/usr/src/cmd/avs/ncall/Makefile deleted file mode 100644 index 30bffc0513..0000000000 --- a/usr/src/cmd/avs/ncall/Makefile +++ /dev/null @@ -1,84 +0,0 @@ -# CDDL HEADER START -# -# The contents of this file are subject to the terms of the -# Common Development and Distribution License (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 2009 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# -# - -DYNPROG = \ - ncalladm - -include ../../Makefile.cmd - -SUBDIRS= -PROG= $(DYNPROG) - -ncalladm := POBJS = ncalladm.o - -OBJS= ncalladm.o -SRCS= $(OBJS:%.o=%.c) -POFILE= $(OBJS:%.o=%.po) - -LDLIBS += -ldscfg -LINTFLAGS += -D_SYSCALL32 -D__NCALL__ -LINTFLAGS += -erroff=E_NAME_DEF_NOT_USED2 -LINTFLAGS += -erroff=E_SEC_PRINTF_VAR_FMT -LINTFLAGS += -erroff=E_FUNC_RET_MAYBE_IGNORED2 -LINTFLAGS += -erroff=E_NAME_USED_NOT_DEF2 -LINTFLAGS += -erroff=E_BAD_FORMAT_ARG_TYPE2 -LINTFLAGS += -erroff=E_FUNC_RET_ALWAYS_IGNOR2 -LINTDIR = $(KBASE)/lintdir -CFLAGS += $(CCVERBOSE) -D_SYSCALL32 -D__NCALL__ -CERRWARN += -_gcc=-Wno-uninitialized -ROOTLINK = $(ROOTLIB)/$(PROG) - -all := TARGET= all -install := TARGET= install -clean := TARGET= clean -clobber := TARGET= clobber -lint := TARGET= lint - -.KEEP_STATE: - -.PARALLEL: $(OBJS) - -all: $(SUBDIRS)$(PROG) $(POFILE) - -install: $(SUBDIRS) all $(ROOTPROG) $(ROOTLINK) - -lint: $(SUBDIRS) lint_SRCS - -clean: $(SUBDIRS) - $(RM) *.o $(POFILE) - -$(PROG): $$(POBJS) - $(LINK.c) $(POBJS) -o $@ $(LDLIBS) - $(POST_PROCESS) - -$(SUBDIRS): FRC - @cd $@; pwd; $(MAKE) $(TARGET) - -$(ROOTLINK): $(ROOTLIB) $(ROOTPROG) - -$(RM) $@; $(LN) $(ROOTPROG) $@ - -FRC: - -include ../../Makefile.targ |