
Relative path is required for now for compilation to work for both ftraces and qmi headers. Also introduce Makefile.am for autotools compilation and make changes to Makefile structure. Change-Id: Iff673d79c5424c78e4d9763517c18dff5c731e95 Signed-off-by: Conner Huff <chuff@codeaurora.org>
35 lines
817 B
Makefile
35 lines
817 B
Makefile
ifeq ($(RELEASE_PACKAGE),1)
|
|
EXTRA_CFLAGS+=-DRELEASE_PACKAGE
|
|
endif
|
|
LBITS := $(shell getconf LONG_BIT)
|
|
ifeq ($(LBITS),64)
|
|
CCFLAGS += -m64
|
|
EXTRA_CFLAGS+=-DSYSTEM_IS_64
|
|
else
|
|
CCFLAGS += -m32
|
|
endif
|
|
|
|
rmnet_core_dir = $(prefix)/rmnet_core
|
|
rmnet_core_CFLAGS = -Werror
|
|
|
|
KERNEL_FLAGS ?= ARCH=arm
|
|
|
|
module = rmnet_core.ko
|
|
kmake = $(MAKE) $(KERNEL_FLAGS) -C $(KERNEL_DIR) M=$(CURDIR)
|
|
|
|
$(module):
|
|
$(kmake) modules
|
|
|
|
all-local: $(module)
|
|
|
|
install-exec-local: $(module)
|
|
$(kmake) INSTALL_MOD_PATH=$(DESTDIR)$(prefix)/modules modules_install
|
|
|
|
# "make distclean" will always run clean-local in this directory,
|
|
# regardless of the KERNELMODULES conditional. Therefore, ensure
|
|
# KERNEL_DIR exists before running clean. Further, don't fail even
|
|
# if there is a problem.
|
|
clean-local:
|
|
-test ! -d "$(KERNEL_DIR)" || $(kmake) clean
|
|
|