Makefile (ff3124ef) Makefile (0aaef2f5)
1#
2# CDDL HEADER START
3#
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.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 9 unchanged lines hidden (view full) ---

18#
19# CDDL HEADER END
20#
21#
22# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23# Use is subject to license terms.
24#
25
1#
2# CDDL HEADER START
3#
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.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 9 unchanged lines hidden (view full) ---

18#
19# CDDL HEADER END
20#
21#
22# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23# Use is subject to license terms.
24#
25
26# ident "%Z%%M% %I% %E% SMI"
27#
28# This makefile drives the production of the wpi driver kernel module.
29#
30# i86pc architecture dependent
31#
32
33#
34# Path to the base of the uts directory tree (usually /usr/src/uts).
35#
36UTSBASE = ../..
37
38#
39# Define the module and object file sets.
40#
41MODULE = ral
42OBJECTS = $(RAL_OBJS:%=$(OBJS_DIR)/%)
26#
27# This makefile drives the production of the wpi driver kernel module.
28#
29# i86pc architecture dependent
30#
31
32#
33# Path to the base of the uts directory tree (usually /usr/src/uts).
34#
35UTSBASE = ../..
36
37#
38# Define the module and object file sets.
39#
40MODULE = ral
41OBJECTS = $(RAL_OBJS:%=$(OBJS_DIR)/%)
43LINTS = $(RAL_OBJS:%.o=$(LINTS_DIR)/%.ln)
44ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
45
46#
47# Include common rules.
48#
49include $(UTSBASE)/intel/Makefile.intel
50
51#
52# Define targets
53#
54ALL_TARGET = $(BINARY)
42ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
43
44#
45# Include common rules.
46#
47include $(UTSBASE)/intel/Makefile.intel
48
49#
50# Define targets
51#
52ALL_TARGET = $(BINARY)
55LINT_TARGET = $(MODULE).lint
56INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
57
58#
59# Driver depends on GLDv3 & wifi kernel support module.
60#
61LDFLAGS += -dy -Nmisc/mac -Nmisc/net80211
62
63#

--- 4 unchanged lines hidden (view full) ---

68def: $(DEF_DEPS)
69
70all: $(ALL_DEPS)
71
72clean: $(CLEAN_DEPS)
73
74clobber: $(CLOBBER_DEPS)
75
53INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
54
55#
56# Driver depends on GLDv3 & wifi kernel support module.
57#
58LDFLAGS += -dy -Nmisc/mac -Nmisc/net80211
59
60#

--- 4 unchanged lines hidden (view full) ---

65def: $(DEF_DEPS)
66
67all: $(ALL_DEPS)
68
69clean: $(CLEAN_DEPS)
70
71clobber: $(CLOBBER_DEPS)
72
76lint: $(LINT_DEPS)
77
78modlintlib: $(MODLINTLIB_DEPS)
79
80clean.lint: $(CLEAN_LINT_DEPS)
81
82install: $(INSTALL_DEPS)
83
84#
85# Include common targets.
86#
87include $(UTSBASE)/intel/Makefile.targ
88
89#
90# If you have any special case that general
91# Makefile rules don't serve for you, just do
92# it yourself.
93#
73install: $(INSTALL_DEPS)
74
75#
76# Include common targets.
77#
78include $(UTSBASE)/intel/Makefile.targ
79
80#
81# If you have any special case that general
82# Makefile rules don't serve for you, just do
83# it yourself.
84#