]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/fvid2.git/blob - src/makefile
921680c6927e785809c0586ccfc44003460cb572
[keystone-rtos/fvid2.git] / src / makefile
1 #
2 # This file is the makefile for building fvid2.
3 #
4 include $(PDK_INSTALL_PATH)/ti/build/Rules.make
6 MODULE_NAME = fvid2
8 SRCDIR = src
9 INCDIR = . include src
11 # List all the external components/interfaces, whose interface header files
12 # need to be included for this component
13 INCLUDE_EXTERNAL_INTERFACES = pdk
15 # Common source files and CFLAGS across all platforms and cores
16 PACKAGE_SRCS_COMMON = .
18 SRCS_COMMON += fvid2_drvMgr.c fvid2_utils.c fvid2_graph.c
20 CFLAGS_LOCAL_COMMON = $(PDK_CFLAGS)
21 PACKAGE_SRCS_COMMON = fvid2.h fvid2_component.mk makefile .gitignore include src
22 PACKAGE_SRCS_COMMON += config_mk.bld package.bld package.xdc package.xs
23 PACKAGE_SRCS_COMMON += Settings.xdc.xdt fvid2ver.h fvid2ver.h.xdt
25 # Core/SoC/platform specific source files and CFLAGS
26 # Example:
27 #   SRCS_<core/SoC/platform-name> =
28 #   CFLAGS_LOCAL_<core/SoC/platform-name> =
30 # Include common make files
31 ifeq ($(MAKERULEDIR), )
32 #Makerule path not defined, define this and assume relative path from ROOTDIR
33   MAKERULEDIR := $(ROOTDIR)/ti/build/makerules
34   export MAKERULEDIR
35 endif
36 include $(MAKERULEDIR)/common.mk
38 # OBJs and libraries are built by using rule defined in rules_<target>.mk
39 #     and need not be explicitly specified here
41 # Nothing beyond this point