Home | History | Annotate | Line # | Download | only in unix
Makefile.config revision 1.1.1.9
      1 #
      2 # Makefile.config
      3 #
      4 # Common configuration and setup file to generate the ACPICA tools and
      5 # utilities: the iASL compiler, acpiexec, acpihelp, acpinames, acpisrc,
      6 # acpixtract, acpibin.
      7 #
      8 # This file is included by the individual makefiles for each tool.
      9 #
     10 
     11 #
     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.
     18 #
     19 
     20 #
     21 # Configuration
     22 #
     23 # OPT_CFLAGS can be overridden on the make command line by
     24 #   adding OPT_CFLAGS="..." to the invocation.
     25 #
     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.
     34 #
     35 .SUFFIXES :
     36 PROGS = acpibin acpidump acpiexamples acpiexec acpihelp acpinames acpisrc acpixtract iasl
     37 HOST ?= _CYGWIN
     38 CC =    gcc
     39 
     40 #
     41 # Common defines
     42 #
     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
     49 UNAME_S := $(shell uname -s)
     50 
     51 #
     52 # Host detection and configuration
     53 #
     54 ifeq ($(UNAME_S), Darwin)  # Mac OS X
     55 HOST =       _APPLE
     56 endif
     57 
     58 ifeq ($(UNAME_S), DragonFly)
     59 HOST =       _DragonFly
     60 endif
     61 
     62 ifeq ($(UNAME_S), FreeBSD)
     63 HOST =       _FreeBSD
     64 endif
     65 
     66 ifeq ($(UNAME_S), NetBSD)
     67 HOST =       _NetBSD
     68 endif
     69 
     70 ifeq ($(UNAME_S), QNX)
     71 HOST =       _QNX
     72 endif
     73 
     74 ifeq ($(HOST), _APPLE)
     75 INSTALL  =   cp
     76 INSTALLFLAGS ?= -f
     77 else
     78 INSTALL =    install
     79 INSTALLFLAGS ?= -m 555 -s
     80 endif
     81 
     82 INSTALLPROG = \
     83 	mkdir -p $(DESTDIR)$(INSTALLDIR); \
     84 	$(INSTALL) $(INSTALLFLAGS) ../$(BINDIR)/$(PROG) $(DESTDIR)$(INSTALLDIR)/$(PROG)
     85 
     86 #
     87 # Rename a .exe file if necessary
     88 #
     89 RENAMEPROG = \
     90 	@if [ -e "$(PROG).exe" ] ; then \
     91 		mv $(PROG).exe $(PROG); \
     92 		echo "Renamed $(PROG).exe to $(PROG)"; \
     93 	fi;
     94 
     95 #
     96 # Copy the final executable to the local bin directory
     97 #
     98 COPYPROG = \
     99 	@mkdir -p ../$(BINDIR); \
    100 	cp -f $(PROG) ../$(BINDIR); \
    101 	echo "Copied $(PROG) to $(FINAL_PROG)";
    102 
    103 #
    104 # Main ACPICA source directories
    105 #
    106 ACPICA_SRC =            ../../../source
    107 ACPICA_COMMON =         $(ACPICA_SRC)/common
    108 ACPICA_TOOLS =          $(ACPICA_SRC)/tools
    109 ACPICA_OSL =            $(ACPICA_SRC)/os_specific/service_layers
    110 ACPICA_CORE =           $(ACPICA_SRC)/components
    111 ACPICA_INCLUDE =        $(ACPICA_SRC)/include
    112 ACPICA_DEBUGGER =       $(ACPICA_CORE)/debugger
    113 ACPICA_DISASSEMBLER =   $(ACPICA_CORE)/disassembler
    114 ACPICA_DISPATCHER =     $(ACPICA_CORE)/dispatcher
    115 ACPICA_EVENTS =         $(ACPICA_CORE)/events
    116 ACPICA_EXECUTER =       $(ACPICA_CORE)/executer
    117 ACPICA_HARDWARE =       $(ACPICA_CORE)/hardware
    118 ACPICA_NAMESPACE =      $(ACPICA_CORE)/namespace
    119 ACPICA_PARSER =         $(ACPICA_CORE)/parser
    120 ACPICA_RESOURCES =      $(ACPICA_CORE)/resources
    121 ACPICA_TABLES =         $(ACPICA_CORE)/tables
    122 ACPICA_UTILITIES =      $(ACPICA_CORE)/utilities
    123 
    124 #
    125 # ACPICA tool and utility source directories
    126 #
    127 ACPIBIN =               $(ACPICA_TOOLS)/acpibin
    128 ACPIDUMP =              $(ACPICA_TOOLS)/acpidump
    129 ACPIEXAMPLES =          $(ACPICA_TOOLS)/examples
    130 ACPIEXEC =              $(ACPICA_TOOLS)/acpiexec
    131 ACPIHELP =              $(ACPICA_TOOLS)/acpihelp
    132 ACPINAMES =             $(ACPICA_TOOLS)/acpinames
    133 ACPISRC =               $(ACPICA_TOOLS)/acpisrc
    134 ACPIXTRACT =            $(ACPICA_TOOLS)/acpixtract
    135 ASL_COMPILER =          $(ACPICA_SRC)/compiler
    136 
    137 #
    138 # Common ACPICA header files
    139 #
    140 ACPICA_HEADERS = \
    141     $(wildcard $(ACPICA_INCLUDE)/*.h) \
    142     $(wildcard $(ACPICA_INCLUDE)/platform/*.h)
    143 
    144 #
    145 # Common compiler flags
    146 # The _GNU_SOURCE symbol is required for many hosts.
    147 #
    148 OPT_CFLAGS ?= $(CWARNINGFLAGS)
    149 
    150 #
    151 # Common compiler flags
    152 # The _GNU_SOURCE symbol is required for many hosts.
    153 #
    154 ifeq ($(M32),TRUE)
    155 CFLAGS +=-m32
    156 LDFLAGS +=-m32
    157 endif
    158 
    159 #
    160 # Optionally disable optimizations. Optimization causes problems on
    161 # some compilers such as gcc 4.4
    162 #
    163 ifneq ($(NOOPT),TRUE)
    164 OPT_CFLAGS += -O2
    165 endif
    166 
    167 #
    168 # Optionally disable fortify source. This option can cause
    169 # compile errors in toolchains where it is already defined.
    170 #
    171 ifneq ($(NOFORTIFY),TRUE)
    172 OPT_CFLAGS += -D_FORTIFY_SOURCE=2
    173 endif
    174 
    175 CFLAGS += \
    176     -D$(HOST)\
    177     -D_GNU_SOURCE\
    178     -I$(ACPICA_INCLUDE)
    179     
    180 #
    181 # QNX requires __EXT to enable most functions in its C library, analogous
    182 # to _GNU_SOURCE.
    183 #
    184 ifeq ($(HOST), _QNX)
    185     CFLAGS+=-D__EXT
    186 endif  
    187 
    188 #
    189 # Common compiler warning flags. The warning flags in addition
    190 # to -Wall are not automatically included in -Wall.
    191 #
    192 CWARNINGFLAGS = \
    193     -std=c99\
    194     -Wall\
    195     -Wbad-function-cast\
    196     -Wdeclaration-after-statement\
    197     -Werror\
    198     -Wformat=2\
    199     -Wmissing-declarations\
    200     -Wmissing-prototypes\
    201     -Wstrict-aliasing=0\
    202     -Wstrict-prototypes\
    203     -Wswitch-default\
    204     -Wpointer-arith\
    205     -Wundef
    206 
    207 #
    208 # Common gcc 4+ warning flags
    209 #
    210 CWARNINGFLAGS += \
    211     -Waddress\
    212     -Waggregate-return\
    213     -Winit-self\
    214     -Winline\
    215     -Wmissing-declarations\
    216     -Wmissing-field-initializers\
    217     -Wnested-externs\
    218     -Wold-style-definition\
    219     -Wno-format-nonliteral\
    220     -Wredundant-decls
    221 #
    222 # Per-host flags and exclusions
    223 #
    224 ifneq ($(HOST), _FreeBSD)
    225     CWARNINGFLAGS += \
    226         -Wempty-body
    227 
    228     ifneq ($(HOST), _APPLE)
    229         CWARNINGFLAGS += \
    230             -Woverride-init\
    231             -Wlogical-op\
    232             -Wmissing-parameter-type\
    233             -Wold-style-declaration\
    234             -Wtype-limits
    235     endif
    236 endif
    237 
    238 #
    239 # Extra warning flags (for possible future use)
    240 #
    241 #CWARNINGFLAGS += \
    242 #	-Wcast-qual\
    243 #	-Wconversion\
    244 #	-Wshadow\
    245 
    246 #
    247 # M4 macro processor is used to build the final parser file
    248 #
    249 # Bison/Flex configuration
    250 #
    251 # -y: act like yacc
    252 #
    253 # -i: generate case insensitive scanner
    254 # -s: suppress default rule, abort on unknown input
    255 #
    256 # Optional for Bison/yacc:
    257 # -v: verbose, produces a .output file
    258 # -d: produces the defines header file
    259 #
    260 # Berkeley yacc configuration
    261 #
    262 #YACC=      byacc
    263 #YFLAGS +=
    264 #
    265 YACC=       bison
    266 YFLAGS +=   -y
    267 
    268 MACROPROC=  m4
    269 MFLAGS=     -P -I$(ASL_COMPILER)
    270 
    271 LEX=        flex
    272 LFLAGS +=   -i -s
    273