kernel: remove unused utsname_set_machine()
[unleashed.git] / usr / src / uts / sparc / icmp / Makefile
blobf60f7fe54cda835254922e071a9246ea6a5651af
2 # CDDL HEADER START
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.
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.
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]
19 # CDDL HEADER END
22 # uts/sparc/icmp/Makefile
23 # Copyright 2008 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
26 # This makefile drives the production of the icmp IP driver
28 # sparc architecture dependent
32 # Path to the base of the uts directory tree (usually /usr/src/uts).
34 UTSBASE = ../..
37 # Define the module and object file sets.
39 MODULE = icmp
40 OBJECTS = $(ICMP_OBJS:%=$(OBJS_DIR)/%)
41 ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
42 ROOTLINK = $(ROOT_STRMOD_DIR)/$(MODULE) $(ROOT_SOCK_DIR)/$(MODULE)
43 CONF_SRCDIR = $(SRCTOP)/kernel/net/ip
46 # Extra for $(MODULE).check target
48 # Need to remove ipddi.o since it has non-static defines for _init etc.
49 IP_CHECK_OBJS = $(IP_OBJS:ipddi.o=ip.o)
50 EXTRA_CHECK_OBJS = $(IP_CHECK_OBJS:%=../ip/$(OBJS_DIR)/%)
53 # Include common rules.
55 include $(UTSBASE)/sparc/Makefile.sparc
58 # Define targets
60 ALL_TARGET = $(BINARY) $(SRC_CONFFILE)
61 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOTLINK) $(ROOT_CONFFILE)
64 # depends on ip and sockfs
66 LDFLAGS += -dy -Ndrv/ip -Nfs/sockfs
69 # For now, disable these compiler warnings; maintainers should endeavor to
70 # investigate and remove these for maximum coverage. Please do not carry
71 # these forward to new Makefiles.
75 # Default build targets.
77 .KEEP_STATE:
79 def: $(DEF_DEPS)
81 all: $(ALL_DEPS) $(SISCHECK_DEPS)
83 clean: $(CLEAN_DEPS) $(SISCLEAN_DEPS)
85 clobber: $(CLOBBER_DEPS) $(SISCLEAN_DEPS)
87 install: $(INSTALL_DEPS) $(SISCHECK_DEPS)
89 $(ROOTLINK): $(ROOT_STRMOD_DIR) $(ROOT_SOCK_DIR) $(ROOTMODULE)
90 -$(RM) $@; ln $(ROOTMODULE) $@
93 # Include common targets.
95 include $(UTSBASE)/sparc/Makefile.targ