]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - ipc/ipcdev.git/blobdiff - products.mak
Added TDA3XX to top-level product file.
[ipc/ipcdev.git] / products.mak
index 33cad69218b42c9da119030e7b1eb7c9a64ef6dd..a2dda3c7d715ea4e4d2a57a2ad36474ac4b27af3 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_
+DEPOT = _your_depot_folder_
 
-#################### IPC Linux ####################
+# Platform to build for
+#   Supported platforms (choose one):
+#       OMAPL138, OMAP54XX, DRA7XX, 66AK2E, TCI6630, TCI6636, TCI6638, TDA3XX
+#
+# Note, this is used for Linux, QNX and BIOS builds
+#
+PLATFORM =
 
-# 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)-
+# Destination when installing the built binaries
+#
+# Note, this is used for Linux (if you use ipc-linux.mak to run the
+# configure command), QNX and BIOS.
+#
+DESTDIR =
 
-# Linux Kernel install path needed to build the mmRpc user libaries 
-# for devices that support RPMSG_RPC (optional)
-KERNEL_INSTALL_DIR ?=
 
-# Linux platform to build (optional)
-# Run './configure --help' for available PLATFORM options
-PLATFORM ?=
+#################### IPC Linux ####################
 
-# Path to TI Linux Utils package to locate the pre-built CMEM libraries (optional):
-CMEM_INSTALL_DIR ?=
+# 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)-
 
-#################### IPC QNX ####################
+# Path to Linux Kernel - needed to build the IPC user libraries
+#
+KERNEL_INSTALL_DIR =
 
-# Set up path to QNX tools installation
-QNX_INSTALL_DIR ?=
-# Set up destination for target binaries
-DESTDIR ?=
+# Optional: Path to DRM Library
+#
+DRM_PREFIX =
 
-# List of supported devices (choose one): omap5432, vayu, simvayu
+# Optional: Path to TI Linux Utils product
 #
-DEVICE ?= _device_
+CMEM_INSTALL_DIR =
 
-#################### IPC Bios ####################
 
-# Set up required dependencies for IPC Bios builds
-XDC_INSTALL_DIR ?= $(DEPOT)/_your_xdctools_install_
-BIOS_INSTALL_DIR ?= $(DEPOT)/_your_bios_install_
+#################### IPC QNX ####################
 
+# Path to QNX tools installation
 #
-# 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.
+QNX_INSTALL_DIR =
+
+# Optional: Any additional compile options
 #
-ti.targets.C28_large ?=
-ti.targets.C28_float ?=
-ti.targets.C64P ?=
-ti.targets.C64P_big_endian ?=
-ti.targets.C674 ?=
+QNX_CFLAGS =
 
-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 ?=
+#################### IPC Bios ####################
 
-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 ?=
+# Path to required dependencies for IPC BIOS builds
+#
+XDC_INSTALL_DIR = $(DEPOT)/_your_xdctools_install_
+BIOS_INSTALL_DIR = $(DEPOT)/_your_bios_install_
 
-ti.targets.arp32.elf.ARP32 ?=
-ti.targets.arp32.elf.ARP32_far ?=
+# Do you want to build SMP-enabled libraries (if supported for your target)?
+# Set to either 0 (disabled) or 1 (enabled)
+#
+BIOS_SMPENABLED=1
 
-gnu.targets.arm.A8F ?=
-gnu.targets.arm.A15F ?=
+# Path to various cgtools
+#
+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.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 =
+
+gnu.targets.arm.A8F =
+gnu.targets.arm.A15F =