]> git.saurik.com Git - apple/xnu.git/blame - iokit/conf/Makefile.ppc
xnu-1504.7.4.tar.gz
[apple/xnu.git] / iokit / conf / Makefile.ppc
CommitLineData
1c79356b
A
1######################################################################
2#BEGIN Machine dependent Makefile fragment for ppc
3######################################################################
4
b0d623f7
A
5# Enable -Werror for ppc builds
6CFLAGS+= $(WERROR)
7CWARNFLAGS= $(filter-out -Wbad-function-cast, $(CWARNFLAGS_STD))
8
9# Objects that don't compile cleanly:
10OBJS_NO_WERROR= \
11 AppleMacIO.cpo
12
13OBJS_WERROR=$(filter-out $(OBJS_NO_WERROR),$(OBJS))
14
15$(OBJS_WERROR): WERROR=-Werror
16
d1ecb069
A
17# Files that must go in the __HIB segment:
18UNCONFIGURED_HIB_FILES= \
19 IOHibernateRestoreKernel.o \
20 WKdmDecompress.o
21
22HIB_FILES=$(filter $(UNCONFIGURED_HIB_FILES),$(OBJS))
23
1c79356b
A
24######################################################################
25#END Machine dependent Makefile fragment for ppc
26######################################################################
27