1 # Define any symbols needed to invoke configuration changes in make.config
3 DEBUG_FLAG = -g -gstabs+
4 NO_IMPLICIT_TEMPLATES = true
6 # Include standard make configuration stuff that applies to everything
9 include ../../make.config
11 # Now make any necessary architecture specific changes to variables:
15 MYFLAGS += -I/usr/include/libelf
17 CXXFLAGS += $(MYFLAGS)
21 # Tradeoff: adding -g to TFLAGS aids gdb but uses gobs of disk space
28 # no support for elf64_XXX() functions
29 #CXXFLAGS += -DUSES_ELF32_ONLY
30 #CFLAGS += -DUSES_ELF32_ONLY
31 #TFLAGS += -DUSES_ELF32_ONLY
33 # Include the module-specific Makefile, which defines everything about
34 # the module that is common across architectures.
36 include ../make.module.tmpl
38 # Include the "standard library template". This defines all the
39 # common targets like "clean", "install", etc.
41 include ../../make.program.tmpl