-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathMakefile
72 lines (61 loc) · 1.61 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#
# ターゲットの指定(Makefile.targetで上書きされるのを防ぐため)
#
all:
#
# アプリケーションファイル
#
APPNAME = custom_pubsub
APPLDIR = custom_pubsub mros_config mros_config/os/target/os_asp
APPLNAME = app
USE_CXX = true
APPL_CFG = $(APPLNAME).cfg
USE_TRUESTUDIO = true
GEN_MSG = true
MSG_SETTING_JSON = msg_app.json
PYTHON = /usr/bin/python
DEBUG = true
OMIT_OPTIMIZATION = true
#
# アプリケーションプログラムに関する定義
# メインファイル以外に追加するものを記述する
#
APPL_ASMOBJS =
APPL_CXXOBJS =
APPL_COBJS = mros_sys_config.o mros_usr_config.o mros_os_config.o
#
# mros.cpp のコンパイル時にエラーとなる不具合を解消するため
# オプション無しでコンパイルできるように変更すべき
#
APPL_CXXFLAGS := $(APPL_CXXFLAGS) -fpermissive
#
# MBEDライブラリのディレクトリの定義
#
MBED_LIB_DIR = ../../asp_mbed/asp-gr_peach_gcc-mbed/mbed-lib
#
# mROSライブラリのディレクトリの定義
#
MROS_DIR = ../../mros-lib
#
# ASPソースファイルのディレクトリの定義
#
SRCDIR = ../../asp_mbed/asp-gr_peach_gcc-mbed/asp-1.9.2-utf8
#
# MBEDライブラリのビルド
#
include $(MBED_LIB_DIR)/common/Makefile.cmn
include $(MBED_LIB_DIR)/mbed-src/Makefile.src
include $(MBED_LIB_DIR)/SoftPWM/Makefile.pwm
include $(MBED_LIB_DIR)/EthernetInterface/Makefile.eif
include ../Makefile.mbd
#
# mROSライブラリのビルド
#
include $(MROS_DIR)/Makefile.m
include ../Makefile.mros
#
# ASPカーネルライブラリ
#
KERNEL_LIB = .
include ../Makefile.asp
$(ALL_OBJ): kernel_cfg.h