Commit f76e54ea authored by Lionel Gauthier's avatar Lionel Gauthier

Previous commit of Makefile do not compile on kernel 3.17/ubuntu 14.04/x64



git-svn-id: http://svn.eurecom.fr/openair4G/trunk@6321 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent c457a9cb
...@@ -10,7 +10,6 @@ ...@@ -10,7 +10,6 @@
# #
#################################################################################### ####################################################################################
include $(OPENAIR_HOME)/common/utils/Makefile.inc
export BIN_DIR ?= $(shell pwd)/Bin export BIN_DIR ?= $(shell pwd)/Bin
KVERSION = $(shell uname -r) KVERSION = $(shell uname -r)
KVERSION_LAST_DIGIT = $(shell echo ${KVERSION} | cut -d "." -f 3 | cut -d "-" -f 1) KVERSION_LAST_DIGIT = $(shell echo ${KVERSION} | cut -d "." -f 3 | cut -d "-" -f 1)
...@@ -20,11 +19,11 @@ EXTRA_CFLAGS += -DKVERSION=$(KVERSION_LAST_DIGIT) ...@@ -20,11 +19,11 @@ EXTRA_CFLAGS += -DKVERSION=$(KVERSION_LAST_DIGIT)
all: xtlib all: xtlib
echo "Building for Kernel Version: $(KVERSION_LAST_DIGIT)" echo "Building for Kernel Version: $(KVERSION_LAST_DIGIT)"
make -C $(KERNEL_DIR)/build M=$(PWD) modules make -C /lib/modules/$(KVERSION)/build M=$(PWD) modules
mv xt_GTPUAH.ko $(BIN_DIR)/ mv xt_GTPUAH.ko $(BIN_DIR)/
clean: libclean clean: libclean
make -C $(KERNEL_DIR)/build M=$(PWD) clean make -C /lib/modules/$(KVERSION)/build M=$(PWD) clean
################################################################################ ################################################################################
# The next section is used by libxt_GTPUAH # The next section is used by libxt_GTPUAH
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
# #
#################################################################################### ####################################################################################
include $(OPENAIR_HOME)/common/utils/Makefile.inc
export BIN_DIR ?= $(shell pwd)/Bin export BIN_DIR ?= $(shell pwd)/Bin
KVERSION = $(shell uname -r) KVERSION = $(shell uname -r)
KVERSION_LAST_DIGIT = $(shell echo ${KVERSION} | cut -d "." -f 3 | cut -d "-" -f 1) KVERSION_LAST_DIGIT = $(shell echo ${KVERSION} | cut -d "." -f 3 | cut -d "-" -f 1)
...@@ -20,11 +20,11 @@ EXTRA_CFLAGS += -DKVERSION=$(KVERSION_LAST_DIGIT) ...@@ -20,11 +20,11 @@ EXTRA_CFLAGS += -DKVERSION=$(KVERSION_LAST_DIGIT)
all: xtlib all: xtlib
echo "Building for Kernel Version: $(KVERSION_LAST_DIGIT)" echo "Building for Kernel Version: $(KVERSION_LAST_DIGIT)"
make -C $(KERNEL_DIR)/build M=$(PWD) modules make -C /lib/modules/$(KVERSION)/build M=$(PWD) modules
mv xt_GTPURH.ko $(BIN_DIR)/ mv xt_GTPURH.ko $(BIN_DIR)/
clean: libclean clean: libclean
make -C $(KERNEL_DIR)/build M=$(PWD) clean make -C /lib/modules/$(KVERSION)/build M=$(PWD) clean
################################################################################ ################################################################################
# The next section is used by libxt_GTPURH # The next section is used by libxt_GTPURH
......
Installation Instructions Installation Instructions
************************* *************************
Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation, Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation,
Inc. Inc.
Copying and distribution of this file, with or without modification, Copying and distribution of this file, with or without modification,
...@@ -12,8 +12,8 @@ without warranty of any kind. ...@@ -12,8 +12,8 @@ without warranty of any kind.
Basic Installation Basic Installation
================== ==================
Briefly, the shell commands `./configure; make; make install' should Briefly, the shell command `./configure && make && make install'
configure, build, and install this package. The following should configure, build, and install this package. The following
more-detailed instructions are generic; see the `README' file for more-detailed instructions are generic; see the `README' file for
instructions specific to this package. Some packages provide this instructions specific to this package. Some packages provide this
`INSTALL' file but do not implement all of the features documented `INSTALL' file but do not implement all of the features documented
...@@ -309,9 +309,10 @@ causes the specified `gcc' to be used as the C compiler (unless it is ...@@ -309,9 +309,10 @@ causes the specified `gcc' to be used as the C compiler (unless it is
overridden in the site shell script). overridden in the site shell script).
Unfortunately, this technique does not work for `CONFIG_SHELL' due to Unfortunately, this technique does not work for `CONFIG_SHELL' due to
an Autoconf bug. Until the bug is fixed you can use this workaround: an Autoconf limitation. Until the limitation is lifted, you can use
this workaround:
CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
`configure' Invocation `configure' Invocation
====================== ======================
...@@ -367,4 +368,3 @@ operates. ...@@ -367,4 +368,3 @@ operates.
`configure' also accepts some other, not widely useful, options. Run `configure' also accepts some other, not widely useful, options. Run
`configure --help' for more details. `configure --help' for more details.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment