add a variable that contains the proper architecture-dependent -fPIC/-fpic cflag for building shared libraries

SVN-Revision: 12224
This commit is contained in:
Felix Fietkau 2008-08-06 22:10:20 +00:00
parent ce8903f1ce
commit 14ac8769b2
1 changed files with 6 additions and 0 deletions

View File

@ -39,6 +39,12 @@ SUBDIR:=$(patsubst $(TOPDIR)/%,%,${CURDIR})
OPTIMIZE_FOR_CPU=$(ARCH)
ifeq ($(ARCH),powerpc)
FPIC:=-fPIC
else
FPIC:=-fpic
endif
DL_DIR:=$(if $(call qstrip,$(CONFIG_DOWNLOAD_FOLDER)),$(call qstrip,$(CONFIG_DOWNLOAD_FOLDER)),$(TOPDIR)/dl)
BIN_DIR:=$(TOPDIR)/bin
INCLUDE_DIR:=$(TOPDIR)/include