26
27 #
28 # This makefile drives the production of the power driver
29 #
30 # intel architecture dependent
31 #
32
33 #
34 # Path to the base of the uts directory tree (usually /usr/src/uts).
35 #
36 UTSBASE = ../..
37
38 #
39 # Define the module and object file sets.
40 #
41 MODULE = power
42 OBJECTS = $(POWER_OBJS:%=$(OBJS_DIR)/%)
43 LINTS = $(POWER_OBJS:%.o=$(LINTS_DIR)/%.ln)
44 ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
45 CONF_SRCDIR = $(UTSBASE)/common/io
46
47 #
48 # Include common rules.
49 #
50 include $(UTSBASE)/intel/Makefile.intel
51
52 #
53 # Define targets
54 #
55 ALL_TARGET = $(BINARY) $(CONFMOD)
56 LINT_TARGET = $(MODULE).lint
57 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
58
59 #
60 # lint pass one enforcement
61 #
62 CFLAGS += $(CCVERBOSE)
63
64 #
65 # ACPI power button
|
26
27 #
28 # This makefile drives the production of the power driver
29 #
30 # intel architecture dependent
31 #
32
33 #
34 # Path to the base of the uts directory tree (usually /usr/src/uts).
35 #
36 UTSBASE = ../..
37
38 #
39 # Define the module and object file sets.
40 #
41 MODULE = power
42 OBJECTS = $(POWER_OBJS:%=$(OBJS_DIR)/%)
43 LINTS = $(POWER_OBJS:%.o=$(LINTS_DIR)/%.ln)
44 ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
45 CONF_SRCDIR = $(UTSBASE)/common/io
46 INC_PATH += -I$(SRC)/common
47
48 #
49 # Include common rules.
50 #
51 include $(UTSBASE)/intel/Makefile.intel
52
53 #
54 # Define targets
55 #
56 ALL_TARGET = $(BINARY) $(CONFMOD)
57 LINT_TARGET = $(MODULE).lint
58 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
59
60 #
61 # lint pass one enforcement
62 #
63 CFLAGS += $(CCVERBOSE)
64
65 #
66 # ACPI power button
|