]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - ipc/ipcdev.git/blobdiff - products.mak
Build: Switch from ?= assignments to =
[ipc/ipcdev.git] / products.mak
index 110066513578fcc5f3eba1ff009ee8f3d00b3f87..3851d017ea2ccd3eab8030b601bfcd88cc809a1f 100644 (file)
@@ -1,5 +1,5 @@
 #
-#   Copyright (c) 2012-2013, Texas Instruments Incorporated
+#   Copyright (c) 2012-2014, Texas Instruments Incorporated
 #
 #   Redistribution and use in source and binary forms, with or without
 #   modification, are permitted provided that the following conditions
 #  ======== products.mak ========
 #
 
+# Note that these variables can be explicitly set here or on the command line.
+# If you want to use variables in the environment, see the GNU make manual's
+# -e option:  http://www.gnu.org/software/make/manual/make.html#Environment
+
 # Optional: recommended to install all dependent components in one folder.
 #
 DEPOT = _your_depot_folder_
 
+# Platform to build for
+#   Supported platforms (choose one):
+#       OMAPL138, OMAP54XX, DRA7XX, 66AK2E, TCI6630, TCI6636, TCI6638
+#
+# Note, this is used for Linux, QNX and BIOS builds
+#
+PLATFORM =
+
+
 #################### IPC Linux ####################
 
 # Set up required cross compiler path for IPC Linux configuration and build
-TOOLCHAIN_LONGNAME ?=arm-none-linux-gnueabi
-TOOLCHAIN_INSTALL_DIR ?= $(DEPOT)/_your_arm_code_gen_install_
-TOOLCHAIN_PREFIX= $(TOOLCHAIN_INSTALL_DIR)/bin/$(TOOLCHAIN_LONGNAME)-
+#
+TOOLCHAIN_LONGNAME = arm-none-linux-gnueabi
+TOOLCHAIN_INSTALL_DIR = $(DEPOT)/_your_arm_code_gen_install_
+TOOLCHAIN_PREFIX = $(TOOLCHAIN_INSTALL_DIR)/bin/$(TOOLCHAIN_LONGNAME)-
 
-# Linux platform to build (optional)
-# Run './configure --help' for available PLATFORM options
-PLATFORM ?=
+# Path to Linux Kernel - needed to build the IPC user libraries
+#
+KERNEL_INSTALL_DIR =
+
+# Optional: Path to DRM Library
+#
+DRM_PREFIX =
+
+# Optional: Path to TI Linux Utils product
+#
+CMEM_INSTALL_DIR =
 
-# Path to TI Linux Utils package to locate the pre-built CMEM libraries (optional):
-CMEM_INSTALL_DIR ?=
 
 #################### IPC QNX ####################
 
-# Set up path to QNX tools installation
-QNX_INSTALL_DIR ?=
+# Path to QNX tools installation
+#
+QNX_INSTALL_DIR =
 
+# Destination for target binaries
+#
+DESTDIR =
 
 #################### IPC Bios ####################
 
-# Set up required dependencies for IPC Bios builds
-XDC_INSTALL_DIR ?= $(DEPOT)/_your_xdctools_install_
-BIOS_INSTALL_DIR ?= $(DEPOT)/_your_bios_install_
+# Path to required dependencies for IPC BIOS builds
+#
+XDC_INSTALL_DIR = $(DEPOT)/_your_xdctools_install_
+BIOS_INSTALL_DIR = $(DEPOT)/_your_bios_install_
 
+# Do you want to build SMP-enabled libraries (if supported for your target)?
+# Set to either 0 (disabled) or 1 (enabled)
 #
-# Set location of various cgtools for Bios builds needed
-# These variables can be set here or on the command line.  The ?= makes
-# the command line to take precedence over the setting in this file.
+BIOS_SMPENABLED=1
+
+# Path to various cgtools
 #
-ti.targets.C28_large ?=
-ti.targets.C28_float ?=
-ti.targets.C64P ?=
-ti.targets.C64P_big_endian ?=
-ti.targets.C674 ?=
+ti.targets.C28_large =
+ti.targets.C28_float =
 
-ti.targets.elf.C64P ?=
-ti.targets.elf.C64P_big_endian ?=
-ti.targets.elf.C64T ?=
-ti.targets.elf.C66 ?=
-ti.targets.elf.C66_big_endian ?=
-ti.targets.elf.C674 ?=
+ti.targets.elf.C64P =
+ti.targets.elf.C64P_big_endian =
+ti.targets.elf.C64T =
+ti.targets.elf.C66 =
+ti.targets.elf.C66_big_endian =
+ti.targets.elf.C674 =
 
-ti.targets.arm.elf.Arm9 ?=
-ti.targets.arm.elf.A8F ?=
-ti.targets.arm.elf.A8Fnv ?=
-ti.targets.arm.elf.M3 ?=
-ti.targets.arm.elf.M4 ?=
-ti.targets.arm.elf.M4F ?=
+ti.targets.arm.elf.Arm9 =
+ti.targets.arm.elf.A8F =
+ti.targets.arm.elf.A8Fnv =
+ti.targets.arm.elf.M3 =
+ti.targets.arm.elf.M4 =
+ti.targets.arm.elf.M4F =
 
-ti.targets.arp32.elf.ARP32 ?=
-ti.targets.arp32.elf.ARP32_far ?=
+ti.targets.arp32.elf.ARP32 =
+ti.targets.arp32.elf.ARP32_far =
 
-gnu.targets.arm.A8F ?=
-gnu.targets.arm.A15F ?=
+gnu.targets.arm.A8F =
+gnu.targets.arm.A15F =