* (all files)
* stripped svn header
* minor cleanups
; use following command to find out the history of files:
git log
git log --follow
git blame
git annotate
13 lines
398 B
Makefile
13 lines
398 B
Makefile
|
|
SYSLIBPATHS :=
|
|
|
|
ifeq ($(HB_CPU),x86)
|
|
SYSLIBPATHS_BIN := $(WIND_BASE)/target/lib/usr/lib/simpentium/SIMPENTIUM/common
|
|
SYSLIBPATHS_DYN := $(WIND_BASE)/target/lib/usr/lib/simpentium/SIMPENTIUM/common/PIC
|
|
else
|
|
ifeq ($(HB_CPU),arm)
|
|
SYSLIBPATHS_BIN := $(WIND_BASE)/target/lib/usr/lib/arm/ARMARCH7/common
|
|
SYSLIBPATHS_DYN := $(WIND_BASE)/target/lib/usr/lib/arm/ARMARCH7/common/PIC
|
|
endif
|
|
endif
|