Yue Lun | 03a82d9 | 2013-10-21 10:15:02 +0800 | [diff] [blame] | 1 | |
| 2 | include $(PRJ_PATH)/config |
| 3 | |
| 4 | ifndef SYS_PATH |
| 5 | $(error SYS_PATH isn't defined!) |
| 6 | endif |
| 7 | |
| 8 | ifndef TOOL_PATH |
| 9 | $(error TOOL_PATH isn't defined!) |
| 10 | endif |
| 11 | |
| 12 | #define cpu type such as PPC MIPS ARM X86 |
| 13 | ifndef CPU |
| 14 | CPU=mips |
| 15 | endif |
| 16 | |
| 17 | #define os type such as linux netbsd vxworks |
| 18 | ifndef OS |
| 19 | OS=linux |
| 20 | endif |
| 21 | |
| 22 | ifndef OS_VER |
| 23 | OS_VER=2_6 |
| 24 | endif |
| 25 | |
| 26 | #support chip type such as ATHENA GARUDA |
| 27 | ifndef CHIP_TYPE |
| 28 | SUPPORT_CHIP = GARUDA |
| 29 | else |
| 30 | ifeq (GARUDA, $(CHIP_TYPE)) |
| 31 | SUPPORT_CHIP = GARUDA |
| 32 | endif |
| 33 | |
| 34 | ifeq (ATHENA, $(CHIP_TYPE)) |
| 35 | SUPPORT_CHIP = ATHENA |
| 36 | endif |
| 37 | |
| 38 | ifeq (SHIVA, $(CHIP_TYPE)) |
| 39 | SUPPORT_CHIP = SHIVA |
| 40 | endif |
| 41 | |
| 42 | ifeq (HORUS, $(CHIP_TYPE)) |
| 43 | SUPPORT_CHIP = HORUS |
| 44 | endif |
| 45 | |
| 46 | ifeq (ISIS, $(CHIP_TYPE)) |
| 47 | SUPPORT_CHIP = ISIS |
| 48 | endif |
| 49 | |
| 50 | ifeq (ISISC, $(CHIP_TYPE)) |
| 51 | SUPPORT_CHIP = ISISC |
| 52 | endif |
| 53 | |
linchen | d4b91d0 | 2014-11-28 23:04:44 +0800 | [diff] [blame^] | 54 | ifeq (DESS, $(CHIP_TYPE)) |
| 55 | SUPPORT_CHIP = DESS |
| 56 | endif |
| 57 | |
Yue Lun | 03a82d9 | 2013-10-21 10:15:02 +0800 | [diff] [blame] | 58 | ifeq (ALL_CHIP, $(CHIP_TYPE)) |
| 59 | ifneq (TRUE, $(FAL)) |
| 60 | $(error FAL must be TRUE when CHIP_TYPE is defined as ALL_CHIP!) |
| 61 | endif |
linchen | d4b91d0 | 2014-11-28 23:04:44 +0800 | [diff] [blame^] | 62 | SUPPORT_CHIP = ISIS ISISC SHIVA DESS |
Yue Lun | 03a82d9 | 2013-10-21 10:15:02 +0800 | [diff] [blame] | 63 | endif |
| 64 | |
| 65 | ifndef SUPPORT_CHIP |
| 66 | $(error defined CHIP_TYPE isn't supported!) |
| 67 | endif |
| 68 | endif |
| 69 | |
| 70 | #define compile tool prefix |
| 71 | ifndef TOOLPREFIX |
| 72 | TOOLPREFIX=$(CPU)-$(OS)-uclibc- |
| 73 | endif |
| 74 | |
| 75 | DEBUG_ON=FALSE |
| 76 | OPT_FLAG= |
| 77 | LD_FLAG= |
| 78 | |
| 79 | SHELLOBJ=ssdk_sh |
| 80 | US_MOD=ssdk_us |
| 81 | KS_MOD=ssdk_ks |
| 82 | |
| 83 | ifeq (TRUE, $(KERNEL_MODE)) |
| 84 | RUNMODE=km |
| 85 | else |
| 86 | RUNMODE=um |
| 87 | endif |
| 88 | |
Yue Lun | dd6e3d9 | 2013-10-25 13:03:31 +0800 | [diff] [blame] | 89 | BLD_DIR=$(PRJ_PATH)/build/$(OS) |
Yue Lun | 03a82d9 | 2013-10-21 10:15:02 +0800 | [diff] [blame] | 90 | BIN_DIR=$(PRJ_PATH)/build/bin |
| 91 | |
xiaofeis | 505213e | 2014-10-20 19:43:49 +0800 | [diff] [blame] | 92 | VER=1.3.0 |
Yue Lun | 03a82d9 | 2013-10-21 10:15:02 +0800 | [diff] [blame] | 93 | BUILD_NUMBER=$(shell cat $(PRJ_PATH)/make/.build_number) |
| 94 | VERSION=$(VER).$(BUILD_NUMBER) |
| 95 | BUILD_DATE=$(shell date -u +%F-%T) |