Indentation fix, cleanup.
[AROS.git] / arch / all-pc / acpica / generate / unix / Makefile.config
blob3a52735611281ad3781b24972c120f2e28ecfb18
2 # Makefile.config
4 # Common configuration and setup file to generate the ACPICA tools and
5 # utilities: the iASL compiler, acpiexec, acpihelp, acpinames, acpisrc,
6 # acpixtract, acpibin.
8 # This file is included by the individual makefiles for each tool.
12 # Note: This makefile is intended to be used from within the native
13 # ACPICA directory structure, from under generate/unix. It specifically
14 # places all object files in a generate/unix subdirectory, not within
15 # the various ACPICA source directories. This prevents collisions
16 # between different compilations of the same source file with different
17 # compile options, and prevents pollution of the source code.
21 # Configuration
23 # OPT_CFLAGS can be overridden on the make command line by
24 #   adding OPT_CFLAGS="..." to the invocation.
26 # Notes:
27 #   gcc should be version 4 or greater, otherwise some of the options
28 #     used will not be recognized.
29 #   Optional: Set HOST to an appropriate value (_LINUX, _FreeBSD, _APPLE, _CYGWIN, etc.)
30 #     See include/platform/acenv.h for supported values.
31 #     Note: HOST is not nearly as important for applications as it
32 #     is for the kernel-resident version of ACPICA, and it may
33 #     not be necessary to change it.
35 .SUFFIXES :
36 PROGS = acpibin acpidump acpiexec acpihelp acpinames acpisrc acpixtract iasl
37 HOST ?= _CYGWIN
38 CC =    gcc
41 # Common defines
43 OBJDIR =     obj
44 BINDIR =     bin
45 COMPILEOBJ = $(CC) -c $(CFLAGS) $(OPT_CFLAGS) -o $@ $<
46 LINKPROG =   $(CC) $(OBJECTS) -o $(PROG) $(LDFLAGS)
47 PREFIX ?=    /usr
48 INSTALLDIR = $(PREFIX)/bin
50 ifeq ($(HOST), _APPLE)
51 INSTALL  =   cp
52 INSTALLFLAGS ?= -f
53 else
54 INSTALL =    install
55 INSTALLFLAGS ?= -m 555 -s
56 endif
58 INSTALLPROG = \
59         mkdir -p $(DESTDIR)$(INSTALLDIR); \
60         $(INSTALL) $(INSTALLFLAGS) ../$(BINDIR)/$(PROG) $(DESTDIR)$(INSTALLDIR)/$(PROG)
63 # Rename a .exe file if necessary
65 RENAMEPROG = \
66         @if [ -e "$(PROG).exe" ] ; then \
67                 mv $(PROG).exe $(PROG); \
68                 echo "Renamed $(PROG).exe to $(PROG)"; \
69         fi;
72 # Copy the final executable to the local bin directory
74 COPYPROG = \
75         @mkdir -p ../$(BINDIR); \
76         cp -f $(PROG) ../$(BINDIR); \
77         echo "Copied $(PROG) to $(FINAL_PROG)";
80 # Main ACPICA source directories
82 ACPICA_SRC =            ../../../source
83 ACPICA_COMMON =         $(ACPICA_SRC)/common
84 ACPICA_TOOLS =          $(ACPICA_SRC)/tools
85 ACPICA_OSL =            $(ACPICA_SRC)/os_specific/service_layers
86 ACPICA_CORE =           $(ACPICA_SRC)/components
87 ACPICA_INCLUDE =        $(ACPICA_SRC)/include
88 ACPICA_DEBUGGER =       $(ACPICA_CORE)/debugger
89 ACPICA_DISASSEMBLER =   $(ACPICA_CORE)/disassembler
90 ACPICA_DISPATCHER =     $(ACPICA_CORE)/dispatcher
91 ACPICA_EVENTS =         $(ACPICA_CORE)/events
92 ACPICA_EXECUTER =       $(ACPICA_CORE)/executer
93 ACPICA_HARDWARE =       $(ACPICA_CORE)/hardware
94 ACPICA_NAMESPACE =      $(ACPICA_CORE)/namespace
95 ACPICA_PARSER =         $(ACPICA_CORE)/parser
96 ACPICA_RESOURCES =      $(ACPICA_CORE)/resources
97 ACPICA_TABLES =         $(ACPICA_CORE)/tables
98 ACPICA_UTILITIES =      $(ACPICA_CORE)/utilities
101 # ACPICA tool and utility source directories
103 ACPIBIN =               $(ACPICA_TOOLS)/acpibin
104 ACPIDUMP =              $(ACPICA_TOOLS)/acpidump
105 ACPIEXEC =              $(ACPICA_TOOLS)/acpiexec
106 ACPIHELP =              $(ACPICA_TOOLS)/acpihelp
107 ACPINAMES =             $(ACPICA_TOOLS)/acpinames
108 ACPISRC =               $(ACPICA_TOOLS)/acpisrc
109 ACPIXTRACT =            $(ACPICA_TOOLS)/acpixtract
110 ASL_COMPILER =          $(ACPICA_SRC)/compiler
113 # Common ACPICA header files
115 ACPICA_HEADERS = \
116     $(wildcard $(ACPICA_INCLUDE)/*.h) \
117     $(wildcard $(ACPICA_INCLUDE)/platform/*.h)
120 # Common compiler flags
121 # The _GNU_SOURCE symbol is required for many hosts.
123 OPT_CFLAGS ?= $(CWARNINGFLAGS)
126 # Optionally disable optimizations. Optimization causes problems on
127 # some compilers such as gcc 4.4
129 ifneq ($(NOOPT),TRUE)
130 OPT_CFLAGS += -O2 -D_FORTIFY_SOURCE=2
131 endif
133 CFLAGS += \
134     -D$(HOST)\
135     -D_GNU_SOURCE\
136     -I$(ACPICA_INCLUDE)
139 # Common compiler warning flags. The warning flags in addition
140 # to -Wall are not automatically included in -Wall.
142 CWARNINGFLAGS = \
143     -ansi\
144     -Wall\
145     -Wbad-function-cast\
146     -Wdeclaration-after-statement\
147     -Werror\
148     -Wformat=2\
149     -Wmissing-declarations\
150     -Wmissing-prototypes\
151     -Wstrict-aliasing=0\
152     -Wstrict-prototypes\
153     -Wswitch-default\
154     -Wpointer-arith\
155     -Wundef
158 # Common gcc 4+ warning flags
160 CWARNINGFLAGS += \
161     -Waddress\
162     -Waggregate-return\
163     -Wchar-subscripts\
164     -Wmissing-declarations\
165     -Wmissing-field-initializers\
166     -Wnested-externs\
167     -Wold-style-definition\
168     -Wno-format-nonliteral\
169     -Wredundant-decls
172 # Per-host flags and exclusions
174 ifneq ($(HOST), _FreeBSD)
175     CWARNINGFLAGS += \
176         -Wempty-body
178     ifneq ($(HOST), _APPLE)
179         CWARNINGFLAGS += \
180         -Wlogical-op\
181         -Wmissing-parameter-type\
182         -Wold-style-declaration\
183         -Wtype-limits
184     endif
185 endif
188 # Extra warning flags (for possible future use)
190 #CWARNINGFLAGS += \
191 #       -Wcast-qual\
192 #       -Wconversion\
193 #       -Wshadow\
196 # Bison/Flex configuration
198 # -y: act like yacc
200 # -i: generate case insensitive scanner
201 # -s: suppress default rule, abort on unknown input
203 # Optional for Bison/yacc:
204 # -v: verbose, produces a .output file
205 # -d: produces the defines header file
207 # Berkeley yacc configuration
209 #YACC=      byacc
210 #YFLAGS +=
212 YACC=       bison
213 YFLAGS +=   -y
215 LEX=        flex
216 LFLAGS +=   -i -s