From: Raghu Nambiath Date: Wed, 1 May 2013 15:42:31 +0000 (-0400) Subject: Update with the fixes for X-Git-Tag: DEV.RM_LLD.02.00.00.04~23 X-Git-Url: https://git.ti.com/gitweb?p=keystone-rtos%2Frm-lld.git;a=commitdiff_plain;h=1ec11744a4c1257f4245f871219ac5cbff2eeff4 Update with the fixes for - build error - Missing file in package - Removed install from all since this is only needed for Yocto --- diff --git a/makefile_armv7 b/makefile_armv7 index cfda68a..1f48aaf 100644 --- a/makefile_armv7 +++ b/makefile_armv7 @@ -20,11 +20,6 @@ export ARMV7BINDIR ?= ./bin/$(DEVICE) # ROOT Directory export ROOTDIR := ../../.. -# INSTALL default paths -export INSTALL_BIN_BASE_DIR ?= ./install/bin -export INSTALL_INC_BASE_DIR ?= ./install/include -export INSTALL_LIB_BASE_DIR ?= ./install/lib - # INCLUDE Directory export INCDIR := ../../..;$(PDK_INSTALL_PATH);$(ROOTDIR) @@ -53,10 +48,10 @@ export MAKE = make endif # PHONY Targets -.PHONY: all clean lib tests install installbin +.PHONY: all examples clean lib tests install installbin # all rule -all: .executables install installbin +all: .executables .executables: lib tests # Libraries @@ -106,4 +101,6 @@ install: $(CP) ./device/k2k/*.c $(INSTALL_INC_BASE_DIR)/ti/drv/rm/device/k2k $(CP) ./device/k2k/*.dtb $(INSTALL_INC_BASE_DIR)/ti/drv/rm/device/k2k $(CP) ./device/k2k/*.dts $(INSTALL_INC_BASE_DIR)/ti/drv/rm/device/k2k - @$(CP) -r $(ARMV7LIBDIR)/*.a $(INSTALL_LIB_BASE_DIR) \ No newline at end of file + @$(CP) -r $(ARMV7LIBDIR)/*.a $(INSTALL_LIB_BASE_DIR) +# Make rule to create examples Stub +examples: diff --git a/package.bld b/package.bld index 04fc23e..9084154 100644 --- a/package.bld +++ b/package.bld @@ -98,6 +98,7 @@ Pkg.otherFiles[Pkg.otherFiles.length++] = "docs/doxyfile.xdt"; Pkg.otherFiles[Pkg.otherFiles.length++] = "build/buildlib.xs"; Pkg.otherFiles[Pkg.otherFiles.length++] = "makefile"; Pkg.otherFiles[Pkg.otherFiles.length++] = "makefile_armv7"; +Pkg.otherFiles[Pkg.otherFiles.length++] = "build/armv7/librm_aearmv7.mk"; /* Generate Users Manual Doxyfile */ var tplt = xdc.loadTemplate("./docs/doxyfile.xdt");