File tree 4 files changed +11
-9
lines changed
4 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,11 @@ doc/** linguist-documentation
30
30
src /** /c /* text diff =c linguist-language =c
31
31
src /** /h /* text diff =c linguist-language =c
32
32
src /** /c++ /* text diff =cpp linguist-language =cpp
33
- src /** /cpp /* text diff =cpp linguist-language =cpp
33
+ src /** /cpp /* text diff =cpp linguist-language =cpp
34
+ src /** /hpp /* text diff =cpp linguist-language =cpp
35
+ src /** /hxx /* text diff =cpp linguist-language =cpp
36
+ src /** /cxx /* text diff =cpp linguist-language =cpp
37
+ src /** /h++ /* text diff =cpp linguist-language =cpp
34
38
src /** /bas /* text diff =bbcbasic linguist-language =bbcbasic
35
39
src /** /s /* text diff =armasm linguist-language =assembly
36
40
src /** /Hdr /* text diff =armasm linguist-language =assembly
Original file line number Diff line number Diff line change @@ -102,6 +102,7 @@ function check_path()
102
102
[ " ${last_dir} " == " c++" ] || [ " ${last_dir} " == " C++" ] || \
103
103
[ " ${last_dir} " == " hpp" ] || [ " ${last_dir} " == " HPP" ] || \
104
104
[ " ${last_dir} " == " hxx" ] || [ " ${last_dir} " == " HXX" ] || \
105
+ [ " ${last_dir} " == " h++" ] || [ " ${last_dir} " == " H++" ] || \
105
106
[ " ${last_dir} " == " s" ] || [ " ${last_dir} " == " S" ] || \
106
107
[ " ${last_dir} " == " Hdr" ] || [ " ${last_dir} " == " hdr" ] || \
107
108
[ " ${last_dir} " == " fth" ] || [ " ${last_dir} " == " FTH" ] || \
@@ -141,6 +142,7 @@ function find_files_and_link() {
141
142
link_files " ${dir_type} " " ${src_dir} " " ${dst_dir} " " HPP" " hpp"
142
143
link_files " ${dir_type} " " ${src_dir} " " ${dst_dir} " " hxx" " hxx"
143
144
link_files " ${dir_type} " " ${src_dir} " " ${dst_dir} " " HXX" " hxx"
145
+ link_files " ${dir_type} " " ${src_dir} " " ${dst_dir} " " h++" " hpp"
144
146
145
147
# Link C header files (if any):
146
148
link_files " ${dir_type} " " ${src_dir} " " ${dst_dir} " " h" " h"
Original file line number Diff line number Diff line change 3
3
# This is a special file that will be used to control automated code
4
4
# analysis tools such as SonarQube, Coverity, etc. on GitHub.
5
5
# This file is not meant to be executed by humans, but by automated
6
- # tools.
6
+ # tools.
7
7
# If you want to build the project, please use the MkGCC (note no .sh)
8
8
# script instead or MkDDE on RISC OS.
9
9
10
- # MAKE SURE this file is calling your MakefileGCC with the correct
10
+ # MAKE SURE this file is calling your MakefileGCC with the correct
11
11
# target and make sure your MakefileGCC uses the variable OS to
12
- # determine the target OS.
12
+ # determine the target OS.
13
13
14
14
current_dir=" $1 "
15
15
if [ " $current_dir " == " " ]; then
@@ -20,9 +20,5 @@ cd ${current_dir}
20
20
# Display MakefielGCC
21
21
cat ${current_dir} /MakeFileGCC
22
22
23
- # Clean the artifacts
24
- rm ./* .o
25
-
26
23
# Make the artifacts
27
- make all OS=` uname -s` -f ${current_dir} /MakefileGCC --debug
28
-
24
+ make static OS=` uname -s` -f ${current_dir} /MakefileGCC
You can’t perform that action at this time.
0 commit comments