blob: 3f7db51a1568d970e488d65a004f28f1d5987021 [file] [log] [blame]
# Copyright (C) 2011 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# The following variables can be over-ridden by the caller
CC := gcc
CXX := g++
STRIP := strip
BUILD_DIR := /tmp/ndk-$(USER)/build/build-ndk-stack
PROGNAME := /tmp/ndk-$(USER)/ndk-stack
EXECUTABLE := $(PROGNAME)
all: $(EXECUTABLE)
# The rest should be left alone
EXTRA_CFLAGS := -Wall -Werror
EXTRA_LDFLAGS := -lstdc++
ifneq (,$(strip $(DEBUG)))
CFLAGS += -O0 -g
hide = @
strip-cmd =
else
CFLAGS += -O2 -s
hide =
strip-cmd = $(STRIP) $1
endif
ELFF_SOURCES := elff/dwarf_cu.cc \
elff/dwarf_die.cc \
elff/dwarf_utils.cc \
elff/elf_alloc.cc \
elff/elf_file.cc \
elff/elf_mapped_section.cc \
elff/elff_api.cc \
elff/mapfile.c
REGEX_SOURCES := regex/regcomp.c \
regex/regerror.c \
regex/regexec.c \
regex/regfree.c
NDK_STACK_SOURCES := ndk-stack.c \
ndk-stack-parser.c
SOURCES := $(NDK_STACK_SOURCES) $(ELFF_SOURCES) $(REGEX_SOURCES)
OBJECTS=
define build-c-object
OBJECTS += $1
$1: $2
mkdir -p $$(dir $1)
$$(CC) $$(CFLAGS) $$(EXTRA_CFLAGS) -c -o $1 $2
endef
define build-cxx-object
OBJECTS += $1
$1: $2
mkdir -p $$(dir $1)
$$(CXX) $$(CFLAGS) $$(EXTRA_CFLAGS) -c -o $1 $2
endef
$(foreach src,$(filter %.c,$(SOURCES)),\
$(eval $(call build-c-object,$(BUILD_DIR)/$(src:%.c=%.o),$(src)))\
)
$(foreach src,$(filter %.cc,$(SOURCES)),\
$(eval $(call build-cxx-object,$(BUILD_DIR)/$(src:%.cc=%.o),$(src)))\
)
clean:
rm -f $(EXECUTABLE)
$(EXECUTABLE): $(OBJECTS)
$(CXX) $(LDFLAGS) $(OBJECTS) -o $@ $(EXTRA_LDFLAGS)
$(call strip-cmd,$@)