mirror of
https://github.com/marqs85/ossc
synced 2026-02-20 13:31:53 +03:00
move sysconfig.h into a subfolder
(windows’ SDK for Nios II don’t like ./ as a relative path)
This commit is contained in:
parent
5a4d6c798e
commit
c9f47fc3f4
@ -120,8 +120,8 @@ endif # COMSPEC
|
|||||||
#vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
|
#vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
|
||||||
|
|
||||||
#START GENERATED
|
#START GENERATED
|
||||||
ACTIVE_BUILD_CONFIG := default
|
ACTIVE_BUILD_CONFIG := default
|
||||||
BUILD_CONFIGS := default
|
BUILD_CONFIGS := default
|
||||||
|
|
||||||
# The following TYPE comment allows tools to identify the 'type' of target this
|
# The following TYPE comment allows tools to identify the 'type' of target this
|
||||||
# makefile is associated with.
|
# makefile is associated with.
|
||||||
@ -130,7 +130,7 @@ BUILD_CONFIGS := default
|
|||||||
# This following VERSION comment indicates the version of the tool used to
|
# This following VERSION comment indicates the version of the tool used to
|
||||||
# generate this makefile. A makefile variable is provided for VERSION as well.
|
# generate this makefile. A makefile variable is provided for VERSION as well.
|
||||||
# ACDS_VERSION: 14.1
|
# ACDS_VERSION: 14.1
|
||||||
ACDS_VERSION := 14.1
|
ACDS_VERSION := 14.1
|
||||||
|
|
||||||
# This following BUILD_NUMBER comment indicates the build number of the tool
|
# This following BUILD_NUMBER comment indicates the build number of the tool
|
||||||
# used to generate this makefile.
|
# used to generate this makefile.
|
||||||
@ -139,70 +139,70 @@ ACDS_VERSION := 14.1
|
|||||||
# Define path to the application ELF.
|
# Define path to the application ELF.
|
||||||
# It may be used by the makefile fragments so is defined before including them.
|
# It may be used by the makefile fragments so is defined before including them.
|
||||||
#
|
#
|
||||||
ELF := sys_controller.elf
|
ELF := sys_controller.elf
|
||||||
|
|
||||||
# Paths to C, C++, and assembly source files.
|
# Paths to C, C++, and assembly source files.
|
||||||
C_SRCS += av_controller.c
|
C_SRCS += av_controller.c
|
||||||
C_SRCS += it6613/EDID.c
|
C_SRCS += it6613/EDID.c
|
||||||
C_SRCS += it6613/HDMI_TX.c
|
C_SRCS += it6613/HDMI_TX.c
|
||||||
C_SRCS += it6613/hdmitx_nios2.c
|
C_SRCS += it6613/hdmitx_nios2.c
|
||||||
C_SRCS += it6613/it6613.c
|
C_SRCS += it6613/it6613.c
|
||||||
C_SRCS += it6613/it6613_drv.c
|
C_SRCS += it6613/it6613_drv.c
|
||||||
C_SRCS += it6613/it6613_sys.c
|
C_SRCS += it6613/it6613_sys.c
|
||||||
C_SRCS += tvp7002/tvp7002.c
|
C_SRCS += tvp7002/tvp7002.c
|
||||||
C_SRCS += tvp7002/video_modes.c
|
C_SRCS += tvp7002/video_modes.c
|
||||||
C_SRCS += ths7353/ths7353.c
|
C_SRCS += ths7353/ths7353.c
|
||||||
C_SRCS += spi_charlcd/lcd.c
|
C_SRCS += spi_charlcd/lcd.c
|
||||||
CXX_SRCS :=
|
CXX_SRCS :=
|
||||||
ASM_SRCS :=
|
ASM_SRCS :=
|
||||||
|
|
||||||
|
|
||||||
# Path to root of object file tree.
|
# Path to root of object file tree.
|
||||||
OBJ_ROOT_DIR := obj
|
OBJ_ROOT_DIR := obj
|
||||||
|
|
||||||
# Options to control objdump.
|
# Options to control objdump.
|
||||||
CREATE_OBJDUMP := 1
|
CREATE_OBJDUMP := 1
|
||||||
OBJDUMP_INCLUDE_SOURCE := 1
|
OBJDUMP_INCLUDE_SOURCE := 1
|
||||||
OBJDUMP_FULL_CONTENTS := 0
|
OBJDUMP_FULL_CONTENTS := 0
|
||||||
|
|
||||||
# Options to enable/disable optional files.
|
# Options to enable/disable optional files.
|
||||||
CREATE_ELF_DERIVED_FILES := 0
|
CREATE_ELF_DERIVED_FILES := 0
|
||||||
CREATE_LINKER_MAP := 1
|
CREATE_LINKER_MAP := 1
|
||||||
|
|
||||||
# Common arguments for ALT_CFLAGSs
|
# Common arguments for ALT_CFLAGSs
|
||||||
APP_CFLAGS_DEFINED_SYMBOLS := -DNO_I2C_DEBUG -DNO_DEBUG
|
APP_CFLAGS_DEFINED_SYMBOLS := -DNO_I2C_DEBUG -DNO_DEBUG
|
||||||
APP_CFLAGS_UNDEFINED_SYMBOLS :=
|
APP_CFLAGS_UNDEFINED_SYMBOLS :=
|
||||||
APP_CFLAGS_OPTIMIZATION := -Os
|
APP_CFLAGS_OPTIMIZATION := -Os
|
||||||
APP_CFLAGS_DEBUG_LEVEL :=
|
APP_CFLAGS_DEBUG_LEVEL :=
|
||||||
APP_CFLAGS_WARNINGS := -Wall
|
APP_CFLAGS_WARNINGS := -Wall
|
||||||
APP_CFLAGS_USER_FLAGS := -fdata-sections -ffunction-sections -fshort-enums
|
APP_CFLAGS_USER_FLAGS := -fdata-sections -ffunction-sections -fshort-enums
|
||||||
|
|
||||||
APP_ASFLAGS_USER :=
|
APP_ASFLAGS_USER :=
|
||||||
APP_LDFLAGS_USER := -Wl,--gc-sections
|
APP_LDFLAGS_USER := -Wl,--gc-sections
|
||||||
|
|
||||||
# Linker options that have default values assigned later if not
|
# Linker options that have default values assigned later if not
|
||||||
# assigned here.
|
# assigned here.
|
||||||
LINKER_SCRIPT :=
|
LINKER_SCRIPT :=
|
||||||
CRT0 :=
|
CRT0 :=
|
||||||
SYS_LIB :=
|
SYS_LIB :=
|
||||||
|
|
||||||
# Define path to the root of the BSP.
|
# Define path to the root of the BSP.
|
||||||
BSP_ROOT_DIR := ../sys_controller_bsp/
|
BSP_ROOT_DIR := ../sys_controller_bsp/
|
||||||
|
|
||||||
# List of application specific include directories, library directories and library names
|
# List of application specific include directories, library directories and library names
|
||||||
APP_INCLUDE_DIRS += it6613
|
APP_INCLUDE_DIRS += it6613
|
||||||
APP_INCLUDE_DIRS += tvp7002
|
APP_INCLUDE_DIRS += tvp7002
|
||||||
APP_INCLUDE_DIRS += ./
|
APP_INCLUDE_DIRS += ths7353
|
||||||
APP_INCLUDE_DIRS += ths7353
|
APP_INCLUDE_DIRS += spi_charlcd
|
||||||
APP_INCLUDE_DIRS += spi_charlcd
|
APP_INCLUDE_DIRS += ossc
|
||||||
APP_LIBRARY_DIRS :=
|
APP_LIBRARY_DIRS :=
|
||||||
APP_LIBRARY_NAMES :=
|
APP_LIBRARY_NAMES :=
|
||||||
|
|
||||||
# Pre- and post- processor settings.
|
# Pre- and post- processor settings.
|
||||||
BUILD_PRE_PROCESS :=
|
BUILD_PRE_PROCESS :=
|
||||||
BUILD_POST_PROCESS :=
|
BUILD_POST_PROCESS :=
|
||||||
|
|
||||||
QUARTUS_PROJECT_DIR := ../../
|
QUARTUS_PROJECT_DIR := ../../
|
||||||
|
|
||||||
|
|
||||||
#END GENERATED
|
#END GENERATED
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user