1 | # !kmk_ash
|
---|
2 | # $Id: gen-slickedit-workspace.sh 62760 2016-07-30 20:49:17Z vboxsync $
|
---|
3 | ## @file
|
---|
4 | # Script for generating a SlickEdit workspace.
|
---|
5 | #
|
---|
6 |
|
---|
7 | #
|
---|
8 | # Copyright (C) 2009-2015 Oracle Corporation
|
---|
9 | #
|
---|
10 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | # available from http://www.virtualbox.org. This file is free software;
|
---|
12 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | # General Public License (GPL) as published by the Free Software
|
---|
14 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | #
|
---|
18 |
|
---|
19 | #
|
---|
20 | # Some constants.
|
---|
21 | #
|
---|
22 | MY_CAT="kmk_cat"
|
---|
23 | MY_CP="kmk_cp"
|
---|
24 | MY_MKDIR="kmk_mkdir"
|
---|
25 | MY_MV="kmk_mv"
|
---|
26 | MY_SED="kmk_sed"
|
---|
27 | MY_RM="kmk_rm"
|
---|
28 | MY_SLEEP="kmk_sleep"
|
---|
29 | MY_EXPR="kmk_expr"
|
---|
30 | MY_SVN="svn"
|
---|
31 |
|
---|
32 | #MY_SORT="kmk_cat"
|
---|
33 | MY_SORT="sort"
|
---|
34 |
|
---|
35 | #
|
---|
36 | # Globals.
|
---|
37 | #
|
---|
38 | MY_PROJECT_FILES=""
|
---|
39 | MY_OUT_DIRS="\
|
---|
40 | out/${KBUILD_TARGET}.${KBUILD_TARGET_ARCH}/${KBUILD_TYPE} \
|
---|
41 | out/${BUILD_TARGET}.${BUILD_TARGET_ARCH}/${BUILD_TYPE} \
|
---|
42 | out/${KBUILD_TARGET}.${KBUILD_TARGET_ARCH}/debug \
|
---|
43 | out/${BUILD_TARGET}.${BUILD_TARGET_ARCH}/debug \
|
---|
44 | out/${KBUILD_TARGET}.${KBUILD_TARGET_ARCH}/release \
|
---|
45 | out/${BUILD_TARGET}.${BUILD_TARGET_ARCH}/release \
|
---|
46 | out/linux.amd64/debug \
|
---|
47 | out/linux.x86/debug \
|
---|
48 | out/win.amd64/debug \
|
---|
49 | out/win.x86/debug \
|
---|
50 | out/darwin.amd64/debug \
|
---|
51 | out/darwin.x86/debug \
|
---|
52 | out/haiku.amd64/debug \
|
---|
53 | out/haiku.x86/debug \
|
---|
54 | out/solaris.amd64/debug \
|
---|
55 | out/solaris.x86/debug";
|
---|
56 |
|
---|
57 |
|
---|
58 | #
|
---|
59 | # Parameters w/ defaults.
|
---|
60 | #
|
---|
61 | MY_ROOT_DIR=".."
|
---|
62 | MY_OUT_DIR="SlickEdit"
|
---|
63 | MY_PRJ_PRF="VBox-"
|
---|
64 | MY_WS_NAME="VirtualBox.vpw"
|
---|
65 | MY_DBG=""
|
---|
66 | MY_WINDOWS_HOST=""
|
---|
67 | MY_OPT_MINIMAL=""
|
---|
68 | MY_OPT_USE_WILDCARDS="yes"
|
---|
69 |
|
---|
70 | #MY_KBUILD_PATH="${KBUILD_PATH}"
|
---|
71 | #test -z "${MY_KBUILD_PATH}" && MY_KBUILD_PATH="${PATH_KBUILD}"
|
---|
72 | #MY_KBUILD=""
|
---|
73 |
|
---|
74 |
|
---|
75 | ##
|
---|
76 | # Gets the absolute path to an existing directory.
|
---|
77 | #
|
---|
78 | # @param $1 The path.
|
---|
79 | my_abs_dir()
|
---|
80 | {
|
---|
81 | if test -n "${PWD}"; then
|
---|
82 | MY_ABS_DIR=`cd ${MY_ROOT_DIR}/${1} && echo ${PWD}`
|
---|
83 | else
|
---|
84 | # old cygwin shell has no PWD and need adjusting.
|
---|
85 | MY_ABS_DIR=`cd ${MY_ROOT_DIR}/${1} && pwd | ${MY_SED} -e 's,^/cygdrive/\(.\)/,\1:/,'`
|
---|
86 | fi
|
---|
87 | if test -z "${MY_ABS_DIR}"; then
|
---|
88 | MY_ABS_DIR="${1}"
|
---|
89 | fi
|
---|
90 | }
|
---|
91 |
|
---|
92 | ##
|
---|
93 | # Gets the file name part of a path.
|
---|
94 | #
|
---|
95 | # @param $1 The path.
|
---|
96 | my_get_name()
|
---|
97 | {
|
---|
98 | SAVED_IFS=$IFS
|
---|
99 | IFS=":/ "
|
---|
100 | set $1
|
---|
101 | while test $# -gt 1 -a -n "${2}";
|
---|
102 | do
|
---|
103 | shift;
|
---|
104 | done
|
---|
105 |
|
---|
106 | IFS=$SAVED_IFS
|
---|
107 | #echo "$1"
|
---|
108 | export MY_GET_NAME=$1
|
---|
109 | }
|
---|
110 |
|
---|
111 | ##
|
---|
112 | # Generate file entry for the specified file if it was found to be of interest.
|
---|
113 | #
|
---|
114 | # @param $1 The output file name base.
|
---|
115 | # @param $2 The file name.
|
---|
116 | # @param $3 Optional folder override.
|
---|
117 | my_file()
|
---|
118 | {
|
---|
119 | # sort and filter by file type.
|
---|
120 | case "$2" in
|
---|
121 | # drop these.
|
---|
122 | *.kup|*~|*.pyc|*.exe|*.sys|*.dll|*.o|*.obj|*.lib|*.a|*.ko)
|
---|
123 | return 0
|
---|
124 | ;;
|
---|
125 |
|
---|
126 | # by prefix or directory component.
|
---|
127 | tst*|*/testcase/*)
|
---|
128 | MY_FOLDER="$1-Testcases.lst"
|
---|
129 | ;;
|
---|
130 |
|
---|
131 | # by extension.
|
---|
132 | *.c|*.cpp|*.m|*.mm|*.pl|*.py|*.as|*.c.h|*.cpp.h|*.java)
|
---|
133 | MY_FOLDER="$1-Sources.lst"
|
---|
134 | ;;
|
---|
135 |
|
---|
136 | *.h|*.hpp|*.mm)
|
---|
137 | MY_FOLDER="$1-Headers.lst"
|
---|
138 | ;;
|
---|
139 |
|
---|
140 | *.asm|*.s|*.S|*.inc|*.mac)
|
---|
141 | MY_FOLDER="$1-Assembly.lst"
|
---|
142 | ;;
|
---|
143 |
|
---|
144 | *)
|
---|
145 | MY_FOLDER="$1-Others.lst"
|
---|
146 | ;;
|
---|
147 | esac
|
---|
148 | if test -n "$3";
|
---|
149 | then
|
---|
150 | MY_FOLDER="$1-$3.lst"
|
---|
151 | fi
|
---|
152 |
|
---|
153 | ## @todo only files which are in subversion.
|
---|
154 | # if ${MY_SVN} info "${2}" > /dev/null 2>&1; then
|
---|
155 | my_get_name "${2}"
|
---|
156 | echo ' <!-- sortkey: '"${MY_GET_NAME}"' --> <F N="'"${2}"'"/>' >> "${MY_FOLDER}"
|
---|
157 | # fi
|
---|
158 | }
|
---|
159 |
|
---|
160 | ##
|
---|
161 | # Generate file entry for the specified file if it was found to be of interest.
|
---|
162 | #
|
---|
163 | # @param $1 The output file name base.
|
---|
164 | # @param $2 The wildcard spec.
|
---|
165 | # @param $3 Optional folder override.
|
---|
166 | my_wildcard()
|
---|
167 | {
|
---|
168 | if test -n "$3"; then
|
---|
169 | MY_FOLDER="$1-$3.lst"
|
---|
170 | else
|
---|
171 | MY_FOLDER="$1-All.lst"
|
---|
172 | fi
|
---|
173 | EXCLUDES="*.log;*.kup;*~;*.pyc;*.exe;*.sys;*.dll;*.o;*.obj;*.lib;*.a;*.ko;*.class;*.cvsignore;*.done;*.project;*.actionScriptProperties;*.scm-settings;*.svnpatch.rej;*.svn-base;.svn/*;*.gitignore"
|
---|
174 | echo ' <F N="'"${2}"'/*" Recurse="1" Excludes="'"${EXCLUDES}"'"/>' >> "${MY_FOLDER}"
|
---|
175 | }
|
---|
176 |
|
---|
177 | ##
|
---|
178 | # Generate file entries for the specified sub-directory tree.
|
---|
179 | #
|
---|
180 | # @param $1 The output filename.
|
---|
181 | # @param $2 The sub-directory.
|
---|
182 | # @param $3 Optional folder override.
|
---|
183 | my_sub_tree()
|
---|
184 | {
|
---|
185 | if test -n "$MY_DBG"; then echo "dbg: my_sub_tree: ${2}"; fi
|
---|
186 |
|
---|
187 | # Skip .svn directories.
|
---|
188 | case "$2" in
|
---|
189 | */.svn|*/.svn)
|
---|
190 | return 0
|
---|
191 | ;;
|
---|
192 | esac
|
---|
193 |
|
---|
194 | # Process the files in the directory.
|
---|
195 | for f in $2/*;
|
---|
196 | do
|
---|
197 | if test -d "${f}";
|
---|
198 | then
|
---|
199 | my_sub_tree "${1}" "${f}" "${3}"
|
---|
200 | else
|
---|
201 | my_file "${1}" "${f}" "${3}"
|
---|
202 | fi
|
---|
203 | done
|
---|
204 | return 0;
|
---|
205 | }
|
---|
206 |
|
---|
207 |
|
---|
208 | ##
|
---|
209 | # Generate folders for the specified directories and files.
|
---|
210 | #
|
---|
211 | # @param $1 The output (base) file name.
|
---|
212 | # @param $2+ The files and directories to traverse.
|
---|
213 | my_generate_folder()
|
---|
214 | {
|
---|
215 | MY_FILE="$1"
|
---|
216 | shift
|
---|
217 |
|
---|
218 | # Zap existing file collections.
|
---|
219 | > "${MY_FILE}-All.lst"
|
---|
220 | > "${MY_FILE}-Sources.lst"
|
---|
221 | > "${MY_FILE}-Headers.lst"
|
---|
222 | > "${MY_FILE}-Assembly.lst"
|
---|
223 | > "${MY_FILE}-Testcases.lst"
|
---|
224 | > "${MY_FILE}-Others.lst"
|
---|
225 |
|
---|
226 | # Traverse the directories and files.
|
---|
227 | while test $# -ge 1 -a -n "${1}";
|
---|
228 | do
|
---|
229 | for f in ${MY_ROOT_DIR}/$1;
|
---|
230 | do
|
---|
231 | if test -d "${f}";
|
---|
232 | then
|
---|
233 | if test -z "${MY_OPT_USE_WILDCARDS}";
|
---|
234 | then
|
---|
235 | my_sub_tree "${MY_FILE}" "${f}"
|
---|
236 | else
|
---|
237 | case "${f}" in
|
---|
238 | ${MY_ROOT_DIR}/include*)
|
---|
239 | #my_sub_tree "${MY_FILE}" "${f}" "Headers"
|
---|
240 | my_wildcard "${MY_FILE}" "${f}" "Headers"
|
---|
241 | ;;
|
---|
242 | *) my_wildcard "${MY_FILE}" "${f}"
|
---|
243 | ;;
|
---|
244 | esac
|
---|
245 | fi
|
---|
246 | else
|
---|
247 | my_file "${MY_FILE}" "${f}"
|
---|
248 | fi
|
---|
249 | done
|
---|
250 | shift
|
---|
251 | done
|
---|
252 |
|
---|
253 | # Generate the folders.
|
---|
254 | if test -s "${MY_FILE}-All.lst";
|
---|
255 | then
|
---|
256 | ${MY_SORT} "${MY_FILE}-All.lst" | ${MY_SED} -e 's/<!-- sortkey: [^>]*>/ /' >> "${MY_FILE}"
|
---|
257 | fi
|
---|
258 | if test -s "${MY_FILE}-Sources.lst";
|
---|
259 | then
|
---|
260 | echo ' <Folder Name="Sources" Filters="*.c;*.cpp;*.cpp.h;*.c.h;*.m;*.mm;*.pl;*.py;*.as">' >> "${MY_FILE}"
|
---|
261 | ${MY_SORT} "${MY_FILE}-Sources.lst" | ${MY_SED} -e 's/<!-- sortkey: [^>]*>/ /' >> "${MY_FILE}"
|
---|
262 | echo ' </Folder>' >> "${MY_FILE}"
|
---|
263 | fi
|
---|
264 | if test -s "${MY_FILE}-Headers.lst";
|
---|
265 | then
|
---|
266 | if test -z "${MY_OPT_USE_WILDCARDS}";
|
---|
267 | then
|
---|
268 | echo ' <Folder Name="Headers" Filters="*.h;*.hpp">' >> "${MY_FILE}"
|
---|
269 | else
|
---|
270 | echo ' <Folder Name="Headers" Filters="">' >> "${MY_FILE}"
|
---|
271 | fi
|
---|
272 | ${MY_SORT} "${MY_FILE}-Headers.lst" | ${MY_SED} -e 's/<!-- sortkey: [^>]*>/ /' >> "${MY_FILE}"
|
---|
273 | echo ' </Folder>' >> "${MY_FILE}"
|
---|
274 | fi
|
---|
275 | if test -s "${MY_FILE}-Assembly.lst";
|
---|
276 | then
|
---|
277 | echo ' <Folder Name="Assembly" Filters="*.asm;*.s;*.S;*.inc;*.mac">' >> "${MY_FILE}"
|
---|
278 | ${MY_SORT} "${MY_FILE}-Assembly.lst" | ${MY_SED} -e 's/<!-- sortkey: [^>]*>/ /' >> "${MY_FILE}"
|
---|
279 | echo ' </Folder>' >> "${MY_FILE}"
|
---|
280 | fi
|
---|
281 | if test -s "${MY_FILE}-Testcases.lst";
|
---|
282 | then
|
---|
283 | echo ' <Folder Name="Testcases" Filters="tst*;">' >> "${MY_FILE}"
|
---|
284 | ${MY_SORT} "${MY_FILE}-Testcases.lst" | ${MY_SED} -e 's/<!-- sortkey: [^>]*>/ /' >> "${MY_FILE}"
|
---|
285 | echo ' </Folder>' >> "${MY_FILE}"
|
---|
286 | fi
|
---|
287 | if test -s "${MY_FILE}-Others.lst";
|
---|
288 | then
|
---|
289 | echo ' <Folder Name="Others" Filters="">' >> "${MY_FILE}"
|
---|
290 | ${MY_SORT} "${MY_FILE}-Others.lst" | ${MY_SED} -e 's/<!-- sortkey: [^>]*>/ /' >> "${MY_FILE}"
|
---|
291 | echo ' </Folder>' >> "${MY_FILE}"
|
---|
292 | fi
|
---|
293 |
|
---|
294 | # Cleanup
|
---|
295 | ${MY_RM} "${MY_FILE}-All.lst" "${MY_FILE}-Sources.lst" "${MY_FILE}-Headers.lst" "${MY_FILE}-Assembly.lst" \
|
---|
296 | "${MY_FILE}-Testcases.lst" "${MY_FILE}-Others.lst"
|
---|
297 | }
|
---|
298 |
|
---|
299 | ##
|
---|
300 | # Function generating a project build config.
|
---|
301 | #
|
---|
302 | # @param $1 The project file name.
|
---|
303 | # @param $2 Build config name.
|
---|
304 | # @param $3 Extra kBuild command line options, variant 1.
|
---|
305 | # @param $4 Extra kBuild command line options, variant 2.
|
---|
306 | # @param $4+ Include directories.
|
---|
307 | # @param $N --end-includes
|
---|
308 | my_generate_project_config()
|
---|
309 | {
|
---|
310 | MY_FILE="${1}";
|
---|
311 | MY_CFG_NAME="${2}";
|
---|
312 | MY_KMK_EXTRAS1="${3}";
|
---|
313 | MY_KMK_EXTRAS2="${4}";
|
---|
314 | MY_KMK_EXTRAS3="${5}";
|
---|
315 | MY_KMK_EXTRAS4="${6}";
|
---|
316 | shift; shift; shift; shift; shift; shift;
|
---|
317 |
|
---|
318 | echo ' <Config Name="'"${MY_CFG_NAME}"'" OutputFile="" CompilerConfigName="Latest Version">' >> "${MY_FILE}"
|
---|
319 | echo ' <Menu>' >> "${MY_FILE}"
|
---|
320 |
|
---|
321 | echo ' <Target Name="Compile" MenuCaption="&Compile" CaptureOutputWith="ProcessBuffer"' >> "${MY_FILE}"
|
---|
322 | echo ' SaveOption="SaveCurrent" RunFromDir="%p" ClearProcessBuffer="1">' >> "${MY_FILE}"
|
---|
323 | echo -n ' <Exec CmdLine="'"${MY_KMK_INVOCATION} ${MY_KMK_EXTRAS1}"' -C %p %n.o' >> "${MY_FILE}"
|
---|
324 | if test -n "${MY_KMK_EXTRAS2}"; then
|
---|
325 | echo -n " && ${MY_KMK_INVOCATION} ${MY_KMK_EXTRAS2} -C %p %n.o" >> "${MY_FILE}"
|
---|
326 | fi
|
---|
327 | if test -n "${MY_KMK_EXTRAS3}"; then
|
---|
328 | echo -n " && ${MY_KMK_INVOCATION} ${MY_KMK_EXTRAS3} -C %p %n.o" >> "${MY_FILE}"
|
---|
329 | fi
|
---|
330 | if test -n "${MY_KMK_EXTRAS4}"; then
|
---|
331 | echo -n " && ${MY_KMK_INVOCATION} ${MY_KMK_EXTRAS4} -C %p %n.o" >> "${MY_FILE}"
|
---|
332 | fi
|
---|
333 | echo '"/>' >> "${MY_FILE}"
|
---|
334 | echo ' </Target>' >> "${MY_FILE}"
|
---|
335 |
|
---|
336 | echo ' <Target Name="Build" MenuCaption="&Build"CaptureOutputWith="ProcessBuffer"' >> "${MY_FILE}"
|
---|
337 | echo ' SaveOption="SaveWorkspaceFiles" RunFromDir="%rw" ClearProcessBuffer="1">' >> "${MY_FILE}"
|
---|
338 | echo -n ' <Exec CmdLine="'"${MY_KMK_INVOCATION} ${MY_KMK_EXTRAS1}"' -C %rw' >> "${MY_FILE}"
|
---|
339 | if test -n "${MY_KMK_EXTRAS2}"; then
|
---|
340 | echo -n " && ${MY_KMK_INVOCATION} ${MY_KMK_EXTRAS2} -C %rw" >> "${MY_FILE}"
|
---|
341 | fi
|
---|
342 | if test -n "${MY_KMK_EXTRAS3}"; then
|
---|
343 | echo -n " && ${MY_KMK_INVOCATION} ${MY_KMK_EXTRAS3} -C %rw" >> "${MY_FILE}"
|
---|
344 | fi
|
---|
345 | if test -n "${MY_KMK_EXTRAS4}"; then
|
---|
346 | echo -n " && ${MY_KMK_INVOCATION} ${MY_KMK_EXTRAS4} -C %rw" >> "${MY_FILE}"
|
---|
347 | fi
|
---|
348 | echo '"/>' >> "${MY_FILE}"
|
---|
349 | echo ' </Target>' >> "${MY_FILE}"
|
---|
350 |
|
---|
351 | echo ' <Target Name="Rebuild" MenuCaption="&Rebuild" CaptureOutputWith="ProcessBuffer"' >> "${MY_FILE}"
|
---|
352 | echo ' SaveOption="SaveWorkspaceFiles" RunFromDir="%rw" ClearProcessBuffer="1">' >> "${MY_FILE}"
|
---|
353 | echo -n ' <Exec CmdLine="'"${MY_KMK_INVOCATION} ${MY_KMK_EXTRAS1}"' -C %rw' >> "${MY_FILE}"
|
---|
354 | if test -n "${MY_KMK_EXTRAS2}"; then
|
---|
355 | echo -n " && ${MY_KMK_INVOCATION} ${MY_KMK_EXTRAS2} -C %rw rebuild" >> "${MY_FILE}"
|
---|
356 | fi
|
---|
357 | if test -n "${MY_KMK_EXTRAS3}"; then
|
---|
358 | echo -n " && ${MY_KMK_INVOCATION} ${MY_KMK_EXTRAS3} -C %rw rebuild" >> "${MY_FILE}"
|
---|
359 | fi
|
---|
360 | if test -n "${MY_KMK_EXTRAS4}"; then
|
---|
361 | echo -n " && ${MY_KMK_INVOCATION} ${MY_KMK_EXTRAS4} -C %rw rebuild" >> "${MY_FILE}"
|
---|
362 | fi
|
---|
363 | echo '"/>' >> "${MY_FILE}"
|
---|
364 | echo ' </Target>' >> "${MY_FILE}"
|
---|
365 |
|
---|
366 | #echo ' <Target Name="Debug" MenuCaption="&Debug" SaveOption="SaveNone" RunFromDir="%rw">' >> "${MY_FILE}"
|
---|
367 | #echo ' <Exec/>' >> "${MY_FILE}"
|
---|
368 | #echo ' </Target>' >> "${MY_FILE}"
|
---|
369 | #echo ' <Target Name="Execute" MenuCaption="E&xecute" SaveOption="SaveNone" RunFromDir="%rw">'>> "${MY_FILE}"
|
---|
370 | #echo ' <Exec/>' >> "${MY_FILE}"
|
---|
371 | #echo ' </Target>' >> "${MY_FILE}"
|
---|
372 | echo ' </Menu>' >> "${MY_FILE}"
|
---|
373 |
|
---|
374 | #
|
---|
375 | # Include directories.
|
---|
376 | #
|
---|
377 | echo ' <Includes>' >> "${MY_FILE}"
|
---|
378 | while test $# -ge 1 -a "${1}" != "--end-includes";
|
---|
379 | do
|
---|
380 | for f in $1;
|
---|
381 | do
|
---|
382 | my_abs_dir ${f}
|
---|
383 | echo ' <Include Dir="'"${MY_ABS_DIR}/"'"/>' >> "${MY_FILE}"
|
---|
384 | done
|
---|
385 | shift
|
---|
386 | done
|
---|
387 | shift
|
---|
388 | echo ' </Includes>' >> "${MY_FILE}"
|
---|
389 | echo ' </Config>' >> "${MY_FILE}"
|
---|
390 | }
|
---|
391 |
|
---|
392 |
|
---|
393 | ##
|
---|
394 | # Function generating a project.
|
---|
395 | #
|
---|
396 | # @param $1 The project file name.
|
---|
397 | # @param $2 The project working directory.
|
---|
398 | # @param $3 Dummy separator.
|
---|
399 | # @param $4+ Include directories.
|
---|
400 | # @param $N --end-includes
|
---|
401 | # @param $N+1 Directory sub-trees and files to include in the project.
|
---|
402 | #
|
---|
403 | my_generate_project()
|
---|
404 | {
|
---|
405 | MY_FILE="${MY_PRJ_PRF}${1}.vpj";
|
---|
406 | echo "Generating ${MY_FILE}..."
|
---|
407 | MY_WRK_DIR="${2}"
|
---|
408 | shift
|
---|
409 | shift
|
---|
410 | shift
|
---|
411 |
|
---|
412 | # Add it to the project list for workspace construction later on.
|
---|
413 | MY_PROJECT_FILES="${MY_PROJECT_FILES} ${MY_FILE}"
|
---|
414 |
|
---|
415 |
|
---|
416 | #
|
---|
417 | # Generate the head bits.
|
---|
418 | #
|
---|
419 | echo '<!DOCTYPE Project SYSTEM "http://www.slickedit.com/dtd/vse/10.0/vpj.dtd">' > "${MY_FILE}"
|
---|
420 | echo '<Project' >> "${MY_FILE}"
|
---|
421 | echo ' Version="10.0"' >> "${MY_FILE}"
|
---|
422 | echo ' VendorName="SlickEdit"' >> "${MY_FILE}"
|
---|
423 | echo ' VCSProject="Subversion:"' >> "${MY_FILE}"
|
---|
424 | # echo ' Customized="1"' >> "${MY_FILE}"
|
---|
425 | # echo ' WorkingDir="."' >> "${MY_FILE}"
|
---|
426 | my_abs_dir "${MY_WRK_DIR}" >> "${MY_FILE}"
|
---|
427 | echo ' WorkingDir="'"${MY_ABS_DIR}"'"' >> "${MY_FILE}"
|
---|
428 | echo ' >' >> "${MY_FILE}"
|
---|
429 | my_generate_project_config "${MY_FILE}" "Default" "" "" "" "" $*
|
---|
430 | my_generate_project_config "${MY_FILE}" "Debug + hardening" "KBUILD_TYPE=debug VBOX_WITH_HARDENING=1" "" "" "" $*
|
---|
431 | my_generate_project_config "${MY_FILE}" "Release + hardening" "KBUILD_TYPE=release VBOX_WITH_HARDENING=1" "" "" "" $*
|
---|
432 | my_generate_project_config "${MY_FILE}" "Debug+Release + hardening" \
|
---|
433 | "KBUILD_TYPE=debug VBOX_WITH_HARDENING=1" \
|
---|
434 | "KBUILD_TYPE=release VBOX_WITH_HARDENING=1" \
|
---|
435 | "" "" $*
|
---|
436 | my_generate_project_config "${MY_FILE}" "Debug w/o hardening" "KBUILD_TYPE=debug VBOX_WITHOUT_HARDENING=1" "" "" $*
|
---|
437 | my_generate_project_config "${MY_FILE}" "Release w/o hardening" "KBUILD_TYPE=release VBOX_WITHOUT_HARDENING=1" "" "" $*
|
---|
438 | my_generate_project_config "${MY_FILE}" "Debug+Release w/o hardening" \
|
---|
439 | "KBUILD_TYPE=debug VBOX_WITHOUT_HARDENING=1" \
|
---|
440 | "KBUILD_TYPE=release VBOX_WITHOUT_HARDENING=1" \
|
---|
441 | "" "" $*
|
---|
442 | my_generate_project_config "${MY_FILE}" "Debug+Release with and without hardening" \
|
---|
443 | "KBUILD_TYPE=debug VBOX_WITH_HARDENING=1" \
|
---|
444 | "KBUILD_TYPE=release VBOX_WITH_HARDENING=1" \
|
---|
445 | "KBUILD_TYPE=debug VBOX_WITHOUT_HARDENING=1" \
|
---|
446 | "KBUILD_TYPE=release VBOX_WITHOUT_HARDENING=1" \
|
---|
447 | $*
|
---|
448 |
|
---|
449 | while test $# -ge 1 -a "${1}" != "--end-includes";
|
---|
450 | do
|
---|
451 | shift;
|
---|
452 | done;
|
---|
453 | shift;
|
---|
454 |
|
---|
455 | #
|
---|
456 | # Process directories+files and create folders.
|
---|
457 | #
|
---|
458 | echo ' <Files>' >> "${MY_FILE}"
|
---|
459 | my_generate_folder "${MY_FILE}" $*
|
---|
460 | echo ' </Files>' >> "${MY_FILE}"
|
---|
461 |
|
---|
462 | #
|
---|
463 | # The tail.
|
---|
464 | #
|
---|
465 | echo '</Project>' >> "${MY_FILE}"
|
---|
466 |
|
---|
467 | return 0
|
---|
468 | }
|
---|
469 |
|
---|
470 |
|
---|
471 | ##
|
---|
472 | # Generate the workspace
|
---|
473 | #
|
---|
474 | my_generate_workspace()
|
---|
475 | {
|
---|
476 | MY_FILE="${MY_WS_NAME}"
|
---|
477 | echo "Generating ${MY_FILE}..."
|
---|
478 | echo '<!DOCTYPE Workspace SYSTEM "http://www.slickedit.com/dtd/vse/10.0/vpw.dtd">' > "${MY_FILE}"
|
---|
479 | echo '<Workspace Version="10.0" VendorName="SlickEdit">' >> "${MY_FILE}"
|
---|
480 | echo ' <Projects>' >> "${MY_FILE}"
|
---|
481 | for i in ${MY_PROJECT_FILES};
|
---|
482 | do
|
---|
483 | echo ' <Project File="'"${i}"'" />' >> "${MY_FILE}"
|
---|
484 | done
|
---|
485 | echo ' </Projects>' >> "${MY_FILE}"
|
---|
486 | echo '</Workspace>' >> "${MY_FILE}"
|
---|
487 | return 0;
|
---|
488 | }
|
---|
489 |
|
---|
490 |
|
---|
491 | ##
|
---|
492 | # Generate stuff
|
---|
493 | #
|
---|
494 | my_generate_usercpp_h()
|
---|
495 | {
|
---|
496 | #
|
---|
497 | # Probe the slickedit user config, picking the most recent version.
|
---|
498 | #
|
---|
499 | if test -z "${MY_SLICK_CONFIG}"; then
|
---|
500 | if test -d "${HOME}/Library/Application Support/Slickedit"; then
|
---|
501 | MY_SLICKDIR_="${HOME}/Library/Application Support/Slickedit"
|
---|
502 | MY_USERCPP_H="unxcpp.h"
|
---|
503 | MY_VSLICK_DB="vslick.stu"
|
---|
504 | elif test -d "${HOMEDRIVE}${HOMEPATH}/Documents/My SlickEdit Config"; then
|
---|
505 | MY_SLICKDIR_="${HOMEDRIVE}${HOMEPATH}/Documents/My SlickEdit Config"
|
---|
506 | MY_USERCPP_H="usercpp.h"
|
---|
507 | MY_VSLICK_DB="vslick.sta"
|
---|
508 | else
|
---|
509 | MY_SLICKDIR_="${HOME}/.slickedit"
|
---|
510 | MY_USERCPP_H="unxcpp.h"
|
---|
511 | MY_VSLICK_DB="vslick.stu"
|
---|
512 | fi
|
---|
513 | else
|
---|
514 | MY_SLICKDIR_="${MY_SLICK_CONFIG}"
|
---|
515 | if test -n "${MY_WINDOWS_HOST}"; then
|
---|
516 | MY_USERCPP_H="usercpp.h"
|
---|
517 | MY_VSLICK_DB="vslick.sta"
|
---|
518 | else
|
---|
519 | MY_USERCPP_H="unxcpp.h"
|
---|
520 | MY_VSLICK_DB="vslick.stu"
|
---|
521 | fi
|
---|
522 | # MacOS: Implement me!
|
---|
523 | fi
|
---|
524 |
|
---|
525 | MY_VER_NUM="0"
|
---|
526 | MY_VER="0.0.0"
|
---|
527 | for subdir in "${MY_SLICKDIR_}/"*;
|
---|
528 | do
|
---|
529 | if test -f "${subdir}/${MY_USERCPP_H}" -o -f "${subdir}/${MY_VSLICK_DB}"; then
|
---|
530 | MY_CUR_VER_NUM=0
|
---|
531 | MY_CUR_VER=`echo "${subdir}" | ${MY_SED} -e 's,^.*/,,g'`
|
---|
532 |
|
---|
533 | # Convert the dotted version number to an integer, checking that
|
---|
534 | # it is all numbers in the process.
|
---|
535 | set `echo "${MY_CUR_VER}" | ${MY_SED} 's/\./ /g' `
|
---|
536 | i=100000000
|
---|
537 | while test $# -gt 0;
|
---|
538 | do
|
---|
539 | if ! ${MY_EXPR} "$1" + 1 > /dev/null 2> /dev/null; then
|
---|
540 | MY_CUR_VER_NUM=0;
|
---|
541 | break
|
---|
542 | fi
|
---|
543 | if test "$i" -gt 0; then
|
---|
544 | MY_CUR_VER_NUM=$((${MY_CUR_VER_NUM} + $1 * $i))
|
---|
545 | i=$(($i / 100))
|
---|
546 | fi
|
---|
547 | shift
|
---|
548 | done
|
---|
549 |
|
---|
550 | # More recent that what we have?
|
---|
551 | if test "${MY_CUR_VER_NUM}" -gt "${MY_VER_NUM}"; then
|
---|
552 | MY_VER_NUM="${MY_CUR_VER_NUM}"
|
---|
553 | MY_VER="${MY_CUR_VER}"
|
---|
554 | fi
|
---|
555 | fi
|
---|
556 | done
|
---|
557 |
|
---|
558 | MY_SLICKDIR="${MY_SLICKDIR_}/${MY_VER}"
|
---|
559 | MY_USERCPP_H_FULL="${MY_SLICKDIR}/${MY_USERCPP_H}"
|
---|
560 | if test -d "${MY_SLICKDIR}"; then
|
---|
561 | echo "Found SlickEdit v${MY_VER} preprocessor file: ${MY_USERCPP_H_FULL}"
|
---|
562 | else
|
---|
563 | echo "Failed to locate SlickEdit preprocessor file. You need to manually merge ${MY_USERCPP_H}."
|
---|
564 | MY_USERCPP_H_FULL=""
|
---|
565 | fi
|
---|
566 |
|
---|
567 | # Generate our
|
---|
568 | MY_FILE="${MY_USERCPP_H}"
|
---|
569 | ${MY_CAT} > ${MY_FILE} <<EOF
|
---|
570 | #define IN_SLICKEDIT
|
---|
571 | #define RT_C_DECLS_BEGIN
|
---|
572 | #define RT_C_DECLS_END
|
---|
573 | #define RT_NO_THROW
|
---|
574 | #define RT_THROW(type) throw(type)
|
---|
575 | #define RT_GCC_EXTENSION'
|
---|
576 | #define RT_COMPILER_GROKS_64BIT_BITFIELDS'
|
---|
577 | #define RT_COMPILER_WITH_80BIT_LONG_DOUBLE'
|
---|
578 |
|
---|
579 | #define ATL_NO_VTABLE
|
---|
580 | #define BEGIN_COM_MAP(a)
|
---|
581 | #define COM_INTERFACE_ENTRY(a)
|
---|
582 | #define COM_INTERFACE_ENTRY2(a,b)
|
---|
583 | #define COM_INTERFACE_ENTRY3(a,b,c)
|
---|
584 | #define COM_INTERFACE_ENTRY4(a,b,c,d)
|
---|
585 | #define END_COM_MAP(a)
|
---|
586 |
|
---|
587 | #define COM_DECL_READONLY_ENUM_AND_COLLECTION(a)
|
---|
588 | #define COMGETTER(n) n
|
---|
589 | #define COMSETTER(n) n
|
---|
590 | #define ComSafeArrayIn(t,a) t a[]
|
---|
591 | #define ComSafeArrayOut(t,a) t * a[]
|
---|
592 | #define DECLARE_CLASSFACTORY(a)
|
---|
593 | #define DECLARE_CLASSFACTORY_SINGLETON(a)
|
---|
594 | #define DECLARE_REGISTRY_RESOURCEID(a)
|
---|
595 | #define DECLARE_NOT_AGGREGATABLE(a)
|
---|
596 | #define DECLARE_PROTECT_FINAL_CONSTRUCT(a)
|
---|
597 | #define DECLARE_EMPTY_CTOR_DTOR(a) a(); ~a();
|
---|
598 | #define DEFINE_EMPTY_CTOR_DTOR(a) a::a() {} a::~a() {}
|
---|
599 | #define NS_DECL_ISUPPORTS
|
---|
600 | #define NS_IMETHOD virtual nsresult
|
---|
601 | #define NS_IMETHOD_(type) virtual type
|
---|
602 | #define NS_IMETHODIMP nsresult
|
---|
603 | #define NS_IMETHODIMP_(type) type
|
---|
604 | #define PARSERS_EXPORT
|
---|
605 | EOF
|
---|
606 | if test -n "${MY_WINDOWS_HOST}"; then
|
---|
607 | ${MY_CAT} >> ${MY_FILE} <<EOF
|
---|
608 | #define COM_STRUCT_OR_CLASS(I) struct I
|
---|
609 | #define STDMETHOD(m) virtual HRESULT m
|
---|
610 | #define STDMETHOD_(type,m) virtual type m
|
---|
611 | #define STDMETHODIMP HRESULT
|
---|
612 | #define STDMETHODIMP_(type) type
|
---|
613 | EOF
|
---|
614 | else
|
---|
615 | ${MY_CAT} >> ${MY_FILE} <<EOF
|
---|
616 | #define COM_STRUCT_OR_CLASS(I) class I
|
---|
617 | #define STDMETHOD(m) virtual nsresult m
|
---|
618 | #define STDMETHOD_(type,m) virtual type m
|
---|
619 | #define STDMETHODIMP nsresult
|
---|
620 | #define STDMETHODIMP_(type) type
|
---|
621 | EOF
|
---|
622 | fi
|
---|
623 | ${MY_CAT} >> ${MY_FILE} <<EOF
|
---|
624 | #define VBOX_SCRIPTABLE(a) public a
|
---|
625 | #define VBOX_SCRIPTABLE_IMPL(a)
|
---|
626 | #define VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(a)
|
---|
627 |
|
---|
628 | #define CTX_SUFF(var) var##R3
|
---|
629 | #define CTXAllSUFF(var) var##R3
|
---|
630 | #define CTXSUFF(var) var##HC
|
---|
631 | #define OTHERCTXSUFF(var) var##GC
|
---|
632 | #define CTXALLMID(first, last) first##R3##last
|
---|
633 | #define CTXMID(first, last) first##HC##last
|
---|
634 | #define OTHERCTXMID(first, last) first##GC##last
|
---|
635 | #define CTXTYPE(GCType, R3Type, R0Type) R3Type
|
---|
636 | #define RCTYPE(RCType, HCType) RCType
|
---|
637 | #define GCTYPE(GCType, HCType) GCType
|
---|
638 | #define RCPTRTYPE(RCType) RCType
|
---|
639 | #define GCPTRTYPE(GCType) GCType
|
---|
640 | #define HCPTRTYPE(HCType) HCType
|
---|
641 | #define R3R0PTRTYPE(HCType) HCType
|
---|
642 | #define R0PTRTYPE(R3Type) R3Type
|
---|
643 | #define R3PTRTYPE(R0Type) R0Type
|
---|
644 | #define RT_SRC_POS __FILE__, __LINE__, __PRETTY_FUNCTION__
|
---|
645 | #define RT_SRC_POS_DECL const char *pszFile, unsigned iLine, const char *pszFunction
|
---|
646 | #define RT_SRC_POS_ARGS pszFile, iLine, pszFunction
|
---|
647 | #define RTCALL
|
---|
648 | #define DECLINLINE(type) inline type
|
---|
649 | #define DECL_FORCE_INLINE(type) inline type
|
---|
650 | #define DECL_INVALID(type) type
|
---|
651 |
|
---|
652 | #define PDMDEVINSINT_DECLARED 1
|
---|
653 | #define VBOX_WITH_HGCM 1
|
---|
654 | #define VBOXCALL
|
---|
655 |
|
---|
656 | #define PGM_ALL_CB_DECL(type) type
|
---|
657 | #define PGM_ALL_CB2_DECL(type) type
|
---|
658 | #define PGM_CTX(a,b) b
|
---|
659 | #define PGM_CTX3(a,b,c) c
|
---|
660 | #define PGM_GST_NAME(name) PGM_GST_NAME_AMD64(name)
|
---|
661 | #define PGM_GST_NAME_REAL(name) PGM_CTX3(name)
|
---|
662 | #define PGM_GST_NAME_PROT(name) PGM_CTX3(pgm,GstProt,name)
|
---|
663 | #define PGM_GST_NAME_32BIT(name) PGM_CTX3(pgm,Gst32Bit,name)
|
---|
664 | #define PGM_GST_NAME_PAE(name) PGM_CTX3(pgm,GstPAE,name)
|
---|
665 | #define PGM_GST_NAME_AMD64(name) PGM_CTX3(pgm,GstAMD64,name)
|
---|
666 | #define PGM_GST_DECL(type, name) type PGM_GST_NAME(name)
|
---|
667 | #define PGM_SHW_NAME(name) PGM_GST_NAME_AMD64(name)
|
---|
668 | #define PGM_SHW_NAME_32BIT(name) PGM_CTX3(pgm,Shw32Bit,name)
|
---|
669 | #define PGM_SHW_NAME_PAE(name) PGM_CTX3(pgm,ShwPAE,name)
|
---|
670 | #define PGM_SHW_NAME_AMD64(name) PGM_CTX3(pgm,ShwAMD64,name)
|
---|
671 | #define PGM_SHW_NAME_NESTED(name) PGM_CTX3(pgm,ShwNested,name)
|
---|
672 | #define PGM_SHW_NAME_EPT(name) PGM_CTX3(pgm,ShwEPT,name)
|
---|
673 | #define PGM_SHW_DECL(type, name) type PGM_SHW_NAME(name)
|
---|
674 | #define PGM_BTH_NAME(name) PGM_BTH_NAME_NESTED_AMD64(name)
|
---|
675 | #define PGM_BTH_NAME_32BIT_REAL(name) PGM_CTX3(pgm,Bth,name)
|
---|
676 | #define PGM_BTH_NAME_32BIT_PROT(name) PGM_CTX3(pgm,Bth,name)
|
---|
677 | #define PGM_BTH_NAME_32BIT_32BIT(name) PGM_CTX3(pgm,Bth,name)
|
---|
678 | #define PGM_BTH_NAME_PAE_REAL(name) PGM_CTX3(pgm,Bth,name)
|
---|
679 | #define PGM_BTH_NAME_PAE_PROT(name) PGM_CTX3(pgm,Bth,name)
|
---|
680 | #define PGM_BTH_NAME_PAE_32BIT(name) PGM_CTX3(pgm,Bth,name)
|
---|
681 | #define PGM_BTH_NAME_PAE_PAE(name) PGM_CTX3(pgm,Bth,name)
|
---|
682 | #define PGM_BTH_NAME_AMD64_PROT(name) PGM_CTX3(pgm,Bth,name)
|
---|
683 | #define PGM_BTH_NAME_AMD64_AMD64(name) PGM_CTX3(pgm,Bth,name)
|
---|
684 | #define PGM_BTH_NAME_NESTED_REAL(name) PGM_CTX3(pgm,Bth,name)
|
---|
685 | #define PGM_BTH_NAME_NESTED_PROT(name) PGM_CTX3(pgm,Bth,name)
|
---|
686 | #define PGM_BTH_NAME_NESTED_32BIT(name) PGM_CTX3(pgm,Bth,name)
|
---|
687 | #define PGM_BTH_NAME_NESTED_PAE(name) PGM_CTX3(pgm,Bth,name)
|
---|
688 | #define PGM_BTH_NAME_NESTED_AMD64(name) PGM_CTX3(pgm,Bth,name)
|
---|
689 | #define PGM_BTH_NAME_EPT_REAL(name) PGM_CTX3(pgm,Bth,name)
|
---|
690 | #define PGM_BTH_NAME_EPT_PROT(name) PGM_CTX3(pgm,Bth,name)
|
---|
691 | #define PGM_BTH_NAME_EPT_32BIT(name) PGM_CTX3(pgm,Bth,name)
|
---|
692 | #define PGM_BTH_NAME_EPT_PAE(name) PGM_CTX3(pgm,Bth,name)
|
---|
693 | #define PGM_BTH_NAME_EPT_AMD64(name) PGM_CTX3(pgm,Bth,name)
|
---|
694 | #define PGM_BTH_DECL(type, name) type PGM_BTH_NAME(name)
|
---|
695 |
|
---|
696 | #define FNIEMOP_STUB(a_Name) static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu) { return VERR_NOT_IMPLEMENTED; }
|
---|
697 | #define FNIEMOP_DEF(a_Name) static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu)
|
---|
698 | #define FNIEMOP_DEF_1(a_Name, a_Type0, a_Name0) static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu, a_Type0 a_Name0)
|
---|
699 | #define FNIEMOP_DEF_2(a_Name, a_Type0, a_Name0, a_Type1, a_Name1) static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu, a_Type0 a_Name0, a_Type1 a_Name1)
|
---|
700 | #define IEM_CIMPL_DEF_0(a_Name) static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu)
|
---|
701 | #define IEM_CIMPL_DEF_1(a_Name, a_Type0, a_Name0) static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu, , a_Type0 a_Name0)
|
---|
702 | #define IEM_CIMPL_DEF_2(a_Name, a_Type0, a_Name0, a_Type1, a_Name1) static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu, , a_Type0 a_Name0, a_Type1 a_Name1)
|
---|
703 | #define IEM_CIMPL_DEF_3(a_Name, a_Type0, a_Name0, a_Type1, a_Name1, a_Type2, a_Name2) static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu, , a_Type0 a_Name0, a_Type1 a_Name1, , a_Type2 a_Name2)
|
---|
704 | #define IEM_MC_LOCAL(a_Type, a_Name) a_Type a_Name
|
---|
705 | #define IEM_MC_ARG(a_Type, a_Name, a_iArg) a_Type a_Name
|
---|
706 | #define IEM_MC_ARG_CONST(a_Type, a_Name, a_Value, a_iArg) a_Type const a_Name = a_Value
|
---|
707 | #define IEM_STATIC
|
---|
708 |
|
---|
709 | #define RTASN1_IMPL_GEN_SEQ_OF_TYPEDEFS_AND_PROTOS(a_SeqOfType, a_ItemType, a_DeclMacro, a_ImplExtNm) typedef struct a_SeqOfType { RTASN1SEQUENCECORE SeqCore; RTASN1ALLOCATION Allocation; uint32_t cItems; RT_CONCAT(P,a_ItemType) paItems; } a_SeqOfType; typedef a_SeqOfType *P##a_SeqOfType, const *PC##a_SeqOfType; int a_ImplExtNm##_DecodeAsn1(struct RTASN1CURSOR *pCursor, uint32_t fFlags, P##a_SeqOfType pThis, const char *pszErrorTag); int a_ImplExtNm##_Compare(PC##a_SeqOfType pLeft, PC##a_SeqOfType pRight)
|
---|
710 | #define RTASN1_IMPL_GEN_SET_OF_TYPEDEFS_AND_PROTOS(a_SetOfType, a_ItemType, a_DeclMacro, a_ImplExtNm) typedef struct a_SetOfType { RTASN1SETCORE SetCore; RTASN1ALLOCATION Allocation; uint32_t cItems; RT_CONCAT(P,a_ItemType) paItems; } a_SetOfType; typedef a_SetOfType *P##a_SetOfType, const *PC##a_SetOfType; int a_ImplExtNm##_DecodeAsn1(struct RTASN1CURSOR *pCursor, uint32_t fFlags, P##a_SetOfType pThis, const char *pszErrorTag); int a_ImplExtNm##_Compare(PC##a_SetOfType pLeft, PC##a_SetOfType pRight)
|
---|
711 | #define RTASN1TYPE_STANDARD_PROTOTYPES_NO_GET_CORE(a_TypeNm, a_DeclMacro, a_ImplExtNm) int a_ImplExtNm##_Init(P##a_TypeNm pThis, PCRTASN1ALLOCATORVTABLE pAllocator); int a_ImplExtNm##_Clone(P##a_TypeNm pThis, PC##a_TypeNm) pSrc, PCRTASN1ALLOCATORVTABLE pAllocator); void a_ImplExtNm##_Delete(P##a_TypeNm pThis); int a_ImplExtNm##_Enum(P##a_TypeNm pThis, PFNRTASN1ENUMCALLBACK pfnCallback, uint32_t uDepth, void *pvUser); int a_ImplExtNm##_Compare(PC##a_TypeNm) pLeft, PC##a_TypeNm pRight); int a_ImplExtNm##_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, P##a_TypeNm pThis, const char *pszErrorTag); int a_ImplExtNm##_CheckSanity(PC##a_TypeNm pThis, uint32_t fFlags, PRTERRINFO pErrInfo, const char *pszErrorTag)
|
---|
712 | #define RTASN1TYPE_STANDARD_PROTOTYPES(a_TypeNm, a_DeclMacro, a_ImplExtNm, a_Asn1CoreNm) inline PRTASN1CORE a_ImplExtNm##_GetAsn1Core(PC##a_TypeNm pThis) { return (PRTASN1CORE)&pThis->a_Asn1CoreNm; } inline bool a_ImplExtNm##_IsPresent(PC##a_TypeNm pThis) { return pThis && RTASN1CORE_IS_PRESENT(&pThis->a_Asn1CoreNm); } RTASN1TYPE_STANDARD_PROTOTYPES_NO_GET_CORE(a_TypeNm, a_DeclMacro, a_ImplExtNm)
|
---|
713 |
|
---|
714 | #define BS3_DECL(type) type
|
---|
715 | #define BS3_DECL_CALLBACK(type) type
|
---|
716 | #define TMPL_NM(name) name##_mmm
|
---|
717 | #define TMPL_FAR_NM(name) name##_mmm_far
|
---|
718 | #define BS3_CMN_NM(name) name
|
---|
719 | #define BS3_CMN_FAR_NM(name) name
|
---|
720 | #define BS3_CMN_FN_NM(name) name
|
---|
721 | #define BS3_DATA_NM(name) name
|
---|
722 | #define BS3_FAR
|
---|
723 | #define BS3_FAR_CODE
|
---|
724 | #define BS3_FAR_DATA
|
---|
725 | #define BS3_NEAR
|
---|
726 | #define BS3_NEAR_CODE
|
---|
727 | #define BS3_CMN_PROTO_STUB(a_RetType, a_Name, a_Params) a_RetType a_Name a_Params
|
---|
728 | #define BS3_CMN_PROTO_NOSB(a_RetType, a_Name, a_Params) a_RetType a_Name a_Params
|
---|
729 | #define BS3_CMN_DEF( a_RetType, a_Name, a_Params) a_RetType a_Name a_Params
|
---|
730 | #define BS3_MODE_PROTO_STUB(a_RetType, a_Name, a_Params) \
|
---|
731 | a_RetType a_Name##_mmm a_Params; \
|
---|
732 | a_RetType a_Name##_mmm_far a_Params; \
|
---|
733 | a_RetType a_Name##_rm a_Params; \
|
---|
734 | a_RetType a_Name##_pe16 a_Params; \
|
---|
735 | a_RetType a_Name##_pe16_32 a_Params; \
|
---|
736 | a_RetType a_Name##_pe16_v86 a_Params; \
|
---|
737 | a_RetType a_Name##_pe32 a_Params; \
|
---|
738 | a_RetType a_Name##_pe32_16 a_Params; \
|
---|
739 | a_RetType a_Name##_pev86 a_Params; \
|
---|
740 | a_RetType a_Name##_pp16 a_Params; \
|
---|
741 | a_RetType a_Name##_pp16_32 a_Params; \
|
---|
742 | a_RetType a_Name##_pp16_v86 a_Params; \
|
---|
743 | a_RetType a_Name##_pp32 a_Params; \
|
---|
744 | a_RetType a_Name##_pp32_16 a_Params; \
|
---|
745 | a_RetType a_Name##_ppv86 a_Params; \
|
---|
746 | a_RetType a_Name##_pae16 a_Params; \
|
---|
747 | a_RetType a_Name##_pae16_32 a_Params; \
|
---|
748 | a_RetType a_Name##_pae16_v86 a_Params; \
|
---|
749 | a_RetType a_Name##_pae32 a_Params; \
|
---|
750 | a_RetType a_Name##_pae32_16 a_Params; \
|
---|
751 | a_RetType a_Name##_paev86 a_Params; \
|
---|
752 | a_RetType a_Name##_lm16 a_Params; \
|
---|
753 | a_RetType a_Name##_lm32 a_Params; \
|
---|
754 | a_RetType a_Name##_lm64 a_Params; \
|
---|
755 | a_RetType a_Name##_rm_far a_Params; \
|
---|
756 | a_RetType a_Name##_pe16_far a_Params; \
|
---|
757 | a_RetType a_Name##_pe16_v86_far a_Params; \
|
---|
758 | a_RetType a_Name##_pe32_16_far a_Params; \
|
---|
759 | a_RetType a_Name##_pev86_far a_Params; \
|
---|
760 | a_RetType a_Name##_pp16_far a_Params; \
|
---|
761 | a_RetType a_Name##_pp16_v86_far a_Params; \
|
---|
762 | a_RetType a_Name##_pp32_16_far a_Params; \
|
---|
763 | a_RetType a_Name##_ppv86_far a_Params; \
|
---|
764 | a_RetType a_Name##_pae16_far a_Params; \
|
---|
765 | a_RetType a_Name##_pae16_v86_far a_Params; \
|
---|
766 | a_RetType a_Name##_pae32_16_far a_Params; \
|
---|
767 | a_RetType a_Name##_paev86_far a_Params; \
|
---|
768 | a_RetType a_Name##_lm16_far a_Params
|
---|
769 | #define BS3_MODE_PROTO_NOSB(a_RetType, a_Name, a_Params) \
|
---|
770 | a_RetType a_Name##_mmm a_Params; \
|
---|
771 | a_RetType a_Name##_mmm_far a_Params; \
|
---|
772 | a_RetType a_Name##_rm a_Params; \
|
---|
773 | a_RetType a_Name##_pe16 a_Params; \
|
---|
774 | a_RetType a_Name##_pe16_32 a_Params; \
|
---|
775 | a_RetType a_Name##_pe16_v86 a_Params; \
|
---|
776 | a_RetType a_Name##_pe32 a_Params; \
|
---|
777 | a_RetType a_Name##_pe32_16 a_Params; \
|
---|
778 | a_RetType a_Name##_pev86 a_Params; \
|
---|
779 | a_RetType a_Name##_pp16 a_Params; \
|
---|
780 | a_RetType a_Name##_pp16_32 a_Params; \
|
---|
781 | a_RetType a_Name##_pp16_v86 a_Params; \
|
---|
782 | a_RetType a_Name##_pp32 a_Params; \
|
---|
783 | a_RetType a_Name##_pp32_16 a_Params; \
|
---|
784 | a_RetType a_Name##_ppv86 a_Params; \
|
---|
785 | a_RetType a_Name##_pae16 a_Params; \
|
---|
786 | a_RetType a_Name##_pae16_32 a_Params; \
|
---|
787 | a_RetType a_Name##_pae16_v86 a_Params; \
|
---|
788 | a_RetType a_Name##_pae32 a_Params; \
|
---|
789 | a_RetType a_Name##_pae32_16 a_Params; \
|
---|
790 | a_RetType a_Name##_paev86 a_Params; \
|
---|
791 | a_RetType a_Name##_lm16 a_Params; \
|
---|
792 | a_RetType a_Name##_lm32 a_Params; \
|
---|
793 | a_RetType a_Name##_lm64 a_Params; \
|
---|
794 | a_RetType a_Name##_rm_far a_Params; \
|
---|
795 | a_RetType a_Name##_pe16_far a_Params; \
|
---|
796 | a_RetType a_Name##_pe16_v86_far a_Params; \
|
---|
797 | a_RetType a_Name##_pe32_16_far a_Params; \
|
---|
798 | a_RetType a_Name##_pev86_far a_Params; \
|
---|
799 | a_RetType a_Name##_pp16_far a_Params; \
|
---|
800 | a_RetType a_Name##_pp16_v86_far a_Params; \
|
---|
801 | a_RetType a_Name##_pp32_16_far a_Params; \
|
---|
802 | a_RetType a_Name##_ppv86_far a_Params; \
|
---|
803 | a_RetType a_Name##_pae16_far a_Params; \
|
---|
804 | a_RetType a_Name##_pae16_v86_far a_Params; \
|
---|
805 | a_RetType a_Name##_pae32_16_far a_Params; \
|
---|
806 | a_RetType a_Name##_paev86_far a_Params; \
|
---|
807 | a_RetType a_Name##_lm16_far a_Params
|
---|
808 | #define BS3_MODE_EXPAND_EXTERN_DATA16(a_VarType, a_VarName, a_Suffix) \
|
---|
809 | extern a_VarType a_VarName##_rm a_Suffix; \
|
---|
810 | extern a_VarType a_VarName##_pe16 a_Suffix; \
|
---|
811 | extern a_VarType a_VarName##_pe16_32 a_Suffix; \
|
---|
812 | extern a_VarType a_VarName##_pe16_v86 a_Suffix; \
|
---|
813 | extern a_VarType a_VarName##_pe32 a_Suffix; \
|
---|
814 | extern a_VarType a_VarName##_pe32_16 a_Suffix; \
|
---|
815 | extern a_VarType a_VarName##_pev86 a_Suffix; \
|
---|
816 | extern a_VarType a_VarName##_pp16 a_Suffix; \
|
---|
817 | extern a_VarType a_VarName##_pp16_32 a_Suffix; \
|
---|
818 | extern a_VarType a_VarName##_pp16_v86 a_Suffix; \
|
---|
819 | extern a_VarType a_VarName##_pp32 a_Suffix; \
|
---|
820 | extern a_VarType a_VarName##_pp32_16 a_Suffix; \
|
---|
821 | extern a_VarType a_VarName##_ppv86 a_Suffix; \
|
---|
822 | extern a_VarType a_VarName##_pae16 a_Suffix; \
|
---|
823 | extern a_VarType a_VarName##_pae16_32 a_Suffix; \
|
---|
824 | extern a_VarType a_VarName##_pae16_v86 a_Suffix; \
|
---|
825 | extern a_VarType a_VarName##_pae32 a_Suffix; \
|
---|
826 | extern a_VarType a_VarName##_pae32_16 a_Suffix; \
|
---|
827 | extern a_VarType a_VarName##_paev86 a_Suffix; \
|
---|
828 | extern a_VarType a_VarName##_lm16 a_Suffix; \
|
---|
829 | extern a_VarType a_VarName##_lm32 a_Suffix; \
|
---|
830 | extern a_VarType a_VarName##_lm64 a_Suffix
|
---|
831 |
|
---|
832 | EOF
|
---|
833 |
|
---|
834 | MY_HDR_FILES=` echo ${MY_ROOT_DIR}/include/VBox/*.h ${MY_ROOT_DIR}/include/VBox/vmm/*.h \
|
---|
835 | | ${MY_SED} -e 's,${MY_ROOT_DIR}/include/VBox/err.h,,' `
|
---|
836 | MY_HDR_FILES="${MY_HDR_FILES} ${MY_ROOT_DIR}/include/iprt/cdefs.h"
|
---|
837 | ${MY_SED} \
|
---|
838 | -e '/__cdecl/d' \
|
---|
839 | -e '/^ *# *define.*DECL/!d' \
|
---|
840 | -e '/DECLS/d' \
|
---|
841 | -e '/DECLARE_CLS_/d' \
|
---|
842 | -e '/_SRC_POS_DECL/d' \
|
---|
843 | -e '/declspec/d' \
|
---|
844 | -e '/__attribute__/d' \
|
---|
845 | -e 's/# */#/g' \
|
---|
846 | -e 's/ */ /g' \
|
---|
847 | -e '/ DECLEXPORT_CLASS/d' \
|
---|
848 | -e 's/ *VBOXCALL//' \
|
---|
849 | -e 's/ *RTCALL//' \
|
---|
850 | -e '/ DECLASM(type) type/d' \
|
---|
851 | -e '/define *DECL..CALLBACKMEMBER(type[^)]*) *RT/d' \
|
---|
852 | -e '/define *DECLINLINE(type)/d' \
|
---|
853 | -e '/define *DECL_FORCE_INLINE(type)/d' \
|
---|
854 | -e '/ *DECL_INVALID(/d' \
|
---|
855 | \
|
---|
856 | -e 's/(type) DECLHIDDEN(type)/(type) type/' \
|
---|
857 | -e 's/(type) DECLEXPORT(type)/(type) type/' \
|
---|
858 | -e 's/(type) DECLIMPORT(type)/(type) type/' \
|
---|
859 | -e 's/(a_Type) DECLHIDDEN(a_Type)/(a_Type) a_Type/' \
|
---|
860 | -e 's/(a_Type) DECLEXPORT(a_Type)/(a_Type) a_Type/' \
|
---|
861 | -e 's/(a_Type) DECLIMPORT(a_Type)/(a_Type) a_Type/' \
|
---|
862 | \
|
---|
863 | --append "${MY_FILE}" \
|
---|
864 | ${MY_HDR_FILES}
|
---|
865 |
|
---|
866 | ${MY_CAT} "${MY_FILE}" \
|
---|
867 | | ${MY_SED} -e 's/_/\x1F/g' -e 's/(/\x1E/g' -e 's/[[:space:]][[:space:]]*/\x1C/g' \
|
---|
868 | | ${MY_SED} -e 's/\x1F/_/g' -e 's/\x1E/(/g' -e 's/\x1C/ /g' \
|
---|
869 | | ${MY_SORT} \
|
---|
870 | | ${MY_SED} -e '/#define/s/$/ \/\/ vbox/' --output "${MY_FILE}.2"
|
---|
871 |
|
---|
872 | # Eliminate duplicates.
|
---|
873 | > "${MY_FILE}.3"
|
---|
874 | exec < "${MY_FILE}.2"
|
---|
875 | MY_PREV_DEFINE=""
|
---|
876 | while read MY_LINE;
|
---|
877 | do
|
---|
878 | MY_DEFINE=`echo "${MY_LINE}" | ${MY_SED} -e 's/^#define \([^ ()]*\).*$/\1/' `
|
---|
879 | if test "${MY_DEFINE}" != "${MY_PREV_DEFINE}"; then
|
---|
880 | MY_PREV_DEFINE=${MY_DEFINE}
|
---|
881 | echo "${MY_LINE}" >> "${MY_FILE}.3"
|
---|
882 | fi
|
---|
883 | done
|
---|
884 |
|
---|
885 | # Append non-vbox bits from the current user config.
|
---|
886 | if test -n "${MY_USERCPP_H_FULL}" -a -f "${MY_USERCPP_H_FULL}"; then
|
---|
887 | ${MY_SED} -e '/ \/\/ vbox$/d' -e '/^[[:space:]]*$/d' --append "${MY_FILE}.3" "${MY_USERCPP_H_FULL}"
|
---|
888 | fi
|
---|
889 |
|
---|
890 | # Finalize the file (sort + blank lines).
|
---|
891 | ${MY_CAT} "${MY_FILE}.3" \
|
---|
892 | | ${MY_SED} -e 's/$/\n/' --output "${MY_FILE}"
|
---|
893 | ${MY_RM} -f "${MY_FILE}.2" "${MY_FILE}.3"
|
---|
894 |
|
---|
895 | # Install it.
|
---|
896 | if test -n "${MY_USERCPP_H_FULL}" -a -d "${MY_SLICKDIR}"; then
|
---|
897 | if test -f "${MY_USERCPP_H_FULL}"; then
|
---|
898 | ${MY_MV} -vf "${MY_USERCPP_H_FULL}" "${MY_USERCPP_H_FULL}.bak"
|
---|
899 | ${MY_CP} "${MY_FILE}" "${MY_USERCPP_H_FULL}"
|
---|
900 | echo "Updated the SlickEdit preprocessor file. (Previous version renamed to .bak.)"
|
---|
901 | else
|
---|
902 | ${MY_CP} "${MY_FILE}" "${MY_USERCPP_H_FULL}"
|
---|
903 | echo "Created the SlickEdit preprocessor file."
|
---|
904 | fi
|
---|
905 | fi
|
---|
906 | }
|
---|
907 |
|
---|
908 | ###### end of functions ####
|
---|
909 |
|
---|
910 |
|
---|
911 | #
|
---|
912 | # Parse arguments.
|
---|
913 | #
|
---|
914 | while test $# -ge 1;
|
---|
915 | do
|
---|
916 | ARG=$1
|
---|
917 | shift
|
---|
918 | case "$ARG" in
|
---|
919 |
|
---|
920 | --rootdir)
|
---|
921 | if test $# -eq 0; then
|
---|
922 | echo "error: missing --rootdir argument." 1>&2
|
---|
923 | exit 1;
|
---|
924 | fi
|
---|
925 | MY_ROOT_DIR="$1"
|
---|
926 | shift
|
---|
927 | ;;
|
---|
928 |
|
---|
929 | --outdir)
|
---|
930 | if test $# -eq 0; then
|
---|
931 | echo "error: missing --outdir argument." 1>&2
|
---|
932 | exit 1;
|
---|
933 | fi
|
---|
934 | MY_OUT_DIR="$1"
|
---|
935 | shift
|
---|
936 | ;;
|
---|
937 |
|
---|
938 | --project-base)
|
---|
939 | if test $# -eq 0; then
|
---|
940 | echo "error: missing --project-base argument." 1>&2
|
---|
941 | exit 1;
|
---|
942 | fi
|
---|
943 | MY_PRJ_PRF="$1"
|
---|
944 | shift
|
---|
945 | ;;
|
---|
946 |
|
---|
947 | --workspace)
|
---|
948 | if test $# -eq 0; then
|
---|
949 | echo "error: missing --workspace argument." 1>&2
|
---|
950 | exit 1;
|
---|
951 | fi
|
---|
952 | MY_WS_NAME="$1"
|
---|
953 | shift
|
---|
954 | ;;
|
---|
955 |
|
---|
956 | --windows-host)
|
---|
957 | MY_WINDOWS_HOST=1
|
---|
958 | ;;
|
---|
959 |
|
---|
960 | --minimal)
|
---|
961 | MY_OPT_MINIMAL=1
|
---|
962 | ;;
|
---|
963 |
|
---|
964 | --slickedit-config)
|
---|
965 | MY_SLICK_CONFIG="$1"
|
---|
966 | shift
|
---|
967 | ;;
|
---|
968 |
|
---|
969 | # usage
|
---|
970 | --h*|-h*|-?|--?)
|
---|
971 | echo "usage: $0 [--rootdir <rootdir>] [--outdir <outdir>] [--project-base <prefix>] [--workspace <name>] [--minimal] [--slickedit-config <DIR>]"
|
---|
972 | echo ""
|
---|
973 | echo "If --outdir is specified, you must specify a --rootdir relative to it as well."
|
---|
974 | exit 1;
|
---|
975 | ;;
|
---|
976 |
|
---|
977 | # default
|
---|
978 | *)
|
---|
979 | echo "error: Invalid parameter '$ARG'" 1>&2
|
---|
980 | exit 1;
|
---|
981 |
|
---|
982 | esac
|
---|
983 | done
|
---|
984 |
|
---|
985 |
|
---|
986 | #
|
---|
987 | # From now on everything *MUST* succeed.
|
---|
988 | #
|
---|
989 | set -e
|
---|
990 |
|
---|
991 |
|
---|
992 | #
|
---|
993 | # Make sure the output directory exists, is valid and clean.
|
---|
994 | #
|
---|
995 | ${MY_RM} -f \
|
---|
996 | "${MY_OUT_DIR}/${MY_PRJ_PRF}"*.vpj \
|
---|
997 | "${MY_OUT_DIR}/${MY_WS_NAME}" \
|
---|
998 | "${MY_OUT_DIR}/`echo ${MY_WS_NAME} | ${MY_SED} -e 's/\.vpw$/.vtg/'`"
|
---|
999 | ${MY_MKDIR} -p "${MY_OUT_DIR}"
|
---|
1000 | cd "${MY_OUT_DIR}"
|
---|
1001 |
|
---|
1002 |
|
---|
1003 | #
|
---|
1004 | # Determine the invocation to conjure up kmk.
|
---|
1005 | #
|
---|
1006 | my_abs_dir "tools"
|
---|
1007 | if test -n "${MY_WINDOWS_HOST}"; then
|
---|
1008 | MY_KMK_INVOCATION="${MY_ABS_DIR}/win.x86/bin/rexx.exe ${MY_ABS_DIR}/envSub.cmd kmk.exe"
|
---|
1009 | else
|
---|
1010 | MY_KMK_INVOCATION="/usr/bin/env LANG=C ${MY_ABS_DIR}/env.sh --quiet --no-wine kmk"
|
---|
1011 | fi
|
---|
1012 |
|
---|
1013 |
|
---|
1014 | #
|
---|
1015 | # Generate the projects and workspace.
|
---|
1016 | #
|
---|
1017 | # Note! The configs aren't optimal yet, lots of adjustment wrt headers left to be done.
|
---|
1018 | #
|
---|
1019 |
|
---|
1020 | # src/VBox/Runtime
|
---|
1021 | my_generate_project "IPRT" "src/VBox/Runtime" --begin-incs "include" "src/VBox/Runtime/include" --end-includes "include/iprt" "src/VBox/Runtime"
|
---|
1022 |
|
---|
1023 | # src/VBox/VMM
|
---|
1024 | my_generate_project "VMM" "src/VBox/VMM" --begin-incs "include" "src/VBox/VMM" --end-includes "src/VBox/VMM" \
|
---|
1025 | "include/VBox/vmm/cfgm.h" \
|
---|
1026 | "include/VBox/vmm/cpum.*" \
|
---|
1027 | "include/VBox/vmm/dbgf.h" \
|
---|
1028 | "include/VBox/vmm/em.h" \
|
---|
1029 | "include/VBox/vmm/gim.h" \
|
---|
1030 | "include/VBox/vmm/apic.h" \
|
---|
1031 | "include/VBox/vmm/gmm.*" \
|
---|
1032 | "include/VBox/vmm/gvm.*" \
|
---|
1033 | "include/VBox/vmm/hm*.*" \
|
---|
1034 | "include/VBox/vmm/iom.h" \
|
---|
1035 | "include/VBox/vmm/mm.h" \
|
---|
1036 | "include/VBox/vmm/patm.*" \
|
---|
1037 | "include/VBox/vmm/pdm*.h" \
|
---|
1038 | "include/VBox/vmm/pgm.*" \
|
---|
1039 | "include/VBox/vmm/rem.h" \
|
---|
1040 | "include/VBox/vmm/selm.*" \
|
---|
1041 | "include/VBox/vmm/ssm.h" \
|
---|
1042 | "include/VBox/vmm/stam.*" \
|
---|
1043 | "include/VBox/vmm/tm.h" \
|
---|
1044 | "include/VBox/vmm/trpm.*" \
|
---|
1045 | "include/VBox/vmm/vm.*" \
|
---|
1046 | "include/VBox/vmm/vmm.*"
|
---|
1047 |
|
---|
1048 | # src/recompiler
|
---|
1049 | my_generate_project "REM" "src/recompiler" --begin-incs \
|
---|
1050 | "include" \
|
---|
1051 | "src/recompiler" \
|
---|
1052 | "src/recompiler/target-i386" \
|
---|
1053 | "src/recompiler/tcg/i386" \
|
---|
1054 | "src/recompiler/Sun/crt" \
|
---|
1055 | --end-includes \
|
---|
1056 | "src/recompiler" \
|
---|
1057 | "src/VBox/VMM/include/REMInternal.h" \
|
---|
1058 | "src/VBox/VMM/VMMAll/REMAll.cpp"
|
---|
1059 |
|
---|
1060 | # src/VBox/Additions
|
---|
1061 | my_generate_project "Add-freebsd" "src/VBox/Additions/freebsd" --begin-incs "include" "src/VBox/Additions/freebsd" --end-includes "src/VBox/Additions/freebsd"
|
---|
1062 | my_generate_project "Add-linux" "src/VBox/Additions/linux" --begin-incs "include" "src/VBox/Additions/linux" --end-includes "src/VBox/Additions/linux"
|
---|
1063 | my_generate_project "Add-os2" "src/VBox/Additions/os2" --begin-incs "include" "src/VBox/Additions/os2" --end-includes "src/VBox/Additions/os2"
|
---|
1064 | my_generate_project "Add-solaris" "src/VBox/Additions/solaris" --begin-incs "include" "src/VBox/Additions/solaris" --end-includes "src/VBox/Additions/solaris"
|
---|
1065 | my_generate_project "Add-haiku" "src/VBox/Additions/haiku" --begin-incs "include" "src/VBox/Additions/haiku" --end-includes "src/VBox/Additions/haiku"
|
---|
1066 | my_generate_project "Add-win" "src/VBox/Additions/WINNT" --begin-incs "include" "src/VBox/Additions/WINNT" --end-includes "src/VBox/Additions/WINNT"
|
---|
1067 | test -z "$MY_OPT_MINIMAL" && \
|
---|
1068 | my_generate_project "Add-x11" "src/VBox/Additions/x11" --begin-incs "include" "src/VBox/Additions/x11" --end-includes "src/VBox/Additions/x11"
|
---|
1069 | my_generate_project "Add-Control" "src/VBox/Additions/common/VBoxControl" --begin-incs "include" "src/VBox/Additions/common/VBoxControl" --end-includes "src/VBox/Additions/common/VBoxControl"
|
---|
1070 | my_generate_project "Add-GuestDrv" "src/VBox/Additions/common/VBoxGuest" --begin-incs "include" "src/VBox/Additions/common/VBoxGuest" --end-includes "src/VBox/Additions/common/VBoxGuest" "include/VBox/VBoxGuest*.*"
|
---|
1071 | my_generate_project "Add-Lib" "src/VBox/Additions/common/VBoxGuestLib" --begin-incs "include" "src/VBox/Additions/common/VBoxGuestLib" --end-includes "src/VBox/Additions/common/VBoxGuestLib" "include/VBox/VBoxGuest*.*"
|
---|
1072 | my_generate_project "Add-Service" "src/VBox/Additions/common/VBoxService" --begin-incs "include" "src/VBox/Additions/common/VBoxService" --end-includes "src/VBox/Additions/common/VBoxService"
|
---|
1073 | if test -z "$MY_OPT_MINIMAL"; then
|
---|
1074 | my_generate_project "Add-crOpenGL" "src/VBox/Additions/common/crOpenGL" --begin-incs "include" "src/VBox/Additions/common/crOpenGL" --end-includes "src/VBox/Additions/common/crOpenGL"
|
---|
1075 | my_generate_project "Add-CredProv" "src/VBox/Additions/WINNT/VBoxCredProv" --begin-incs "include" "src/VBox/Additions/WINNT/VBoxCredProv" --end-includes "src/VBox/Additions/WINNT/VBoxCredProv"
|
---|
1076 | my_generate_project "Add-GINA" "src/VBox/Additions/WINNT/VBoxGINA" --begin-incs "include" "src/VBox/Additions/WINNT/VBoxGINA" --end-includes "src/VBox/Additions/WINNT/VBoxGINA"
|
---|
1077 | fi
|
---|
1078 |
|
---|
1079 | # src/VBox/Debugger
|
---|
1080 | my_generate_project "Debugger" "src/VBox/Debugger" --begin-incs "include" "src/VBox/Debugger" --end-includes "src/VBox/Debugger" "include/VBox/dbggui.h" "include/VBox/dbg.h"
|
---|
1081 |
|
---|
1082 | # src/VBox/Devices
|
---|
1083 | my_generate_project "Devices" "src/VBox/Devices" --begin-incs "include" "src/VBox/Devices" --end-includes "src/VBox/Devices" "include/VBox/pci.h" "include/VBox/pdm*.h"
|
---|
1084 | ## @todo split this up.
|
---|
1085 |
|
---|
1086 | # src/VBox/Disassembler
|
---|
1087 | my_generate_project "DIS" "src/VBox/Disassembler" --begin-incs "include" "src/VBox/Disassembler" --end-includes "src/VBox/Disassembler" "include/VBox/dis*.h"
|
---|
1088 |
|
---|
1089 | # src/VBox/Frontends
|
---|
1090 | test -z "$MY_OPT_MINIMAL" && \
|
---|
1091 | my_generate_project "FE-VBoxBalloonCtrl" "src/VBox/Frontends/VBoxBalloonCtrl" --begin-incs "include" "src/VBox/Frontends/VBoxBalloonCtrl" --end-includes "src/VBox/Frontends/VBoxBalloonCtrl"
|
---|
1092 | my_generate_project "FE-VBoxManage" "src/VBox/Frontends/VBoxManage" --begin-incs "include" "src/VBox/Frontends/VBoxManage" --end-includes "src/VBox/Frontends/VBoxManage"
|
---|
1093 | my_generate_project "FE-VBoxHeadless" "src/VBox/Frontends/VBoxHeadless" --begin-incs "include" "src/VBox/Frontends/VBoxHeadless" --end-includes "src/VBox/Frontends/VBoxHeadless"
|
---|
1094 | my_generate_project "FE-VBoxSDL" "src/VBox/Frontends/VBoxSDL" --begin-incs "include" "src/VBox/Frontends/VBoxSDL" --end-includes "src/VBox/Frontends/VBoxSDL"
|
---|
1095 | my_generate_project "FE-VBoxShell" "src/VBox/Frontends/VBoxShell" --begin-incs "include" "src/VBox/Frontends/VBoxShell" --end-includes "src/VBox/Frontends/VBoxShell"
|
---|
1096 | # noise - my_generate_project "FE-VBoxBFE" "src/VBox/Frontends/VBoxBFE" --begin-incs "include" "src/VBox/Frontends/VBoxBFE" --end-includes "src/VBox/Frontends/VBoxBFE"
|
---|
1097 | FE_VBOX_WRAPPERS=""
|
---|
1098 | for d in ${MY_OUT_DIRS};
|
---|
1099 | do
|
---|
1100 | if test -d "${MY_ROOT_DIR}/${d}/obj/VirtualBox/include"; then
|
---|
1101 | FE_VBOX_WRAPPERS="${d}/obj/VirtualBox/include"
|
---|
1102 | break
|
---|
1103 | fi
|
---|
1104 | done
|
---|
1105 | if test -n "${FE_VBOX_WRAPPERS}"; then
|
---|
1106 | my_generate_project "FE-VirtualBox" "src/VBox/Frontends/VirtualBox" --begin-incs "include" "${FE_VBOX_WRAPPERS}" --end-includes "src/VBox/Frontends/VirtualBox" "${FE_VBOX_WRAPPERS}/COMWrappers.cpp" "${FE_VBOX_WRAPPERS}/COMWrappers.h"
|
---|
1107 | else
|
---|
1108 | my_generate_project "FE-VirtualBox" "src/VBox/Frontends/VirtualBox" --begin-incs "include" --end-includes "src/VBox/Frontends/VirtualBox"
|
---|
1109 | fi
|
---|
1110 |
|
---|
1111 | # src/VBox/GuestHost
|
---|
1112 | my_generate_project "HGSMI-GH" "src/VBox/GuestHost/HGSMI" --begin-incs "include" --end-includes "src/VBox/GuestHost/HGSMI"
|
---|
1113 | test -z "$MY_OPT_MINIMAL" && \
|
---|
1114 | my_generate_project "DnD-GH" "src/VBox/GuestHost/DragAndDrop" --begin-incs "include" --end-includes "src/VBox/GuestHost/DragAndDrop"
|
---|
1115 | my_generate_project "OpenGL-GH" "src/VBox/GuestHost/OpenGL" --begin-incs "include" "src/VBox/GuestHost/OpenGL" --end-includes "src/VBox/GuestHost/OpenGL"
|
---|
1116 | my_generate_project "ShClip-GH" "src/VBox/GuestHost/SharedClipboard" --begin-incs "include" --end-includes "src/VBox/GuestHost/SharedClipboard"
|
---|
1117 |
|
---|
1118 | # src/VBox/HostDrivers
|
---|
1119 | my_generate_project "SUP" "src/VBox/HostDrivers/Support" --begin-incs "include" "src/VBox/HostDrivers/Support" --end-includes "src/VBox/HostDrivers/Support" "include/VBox/sup.h" "include/VBox/sup.mac"
|
---|
1120 | my_generate_project "VBoxNetAdp" "src/VBox/HostDrivers/VBoxNetAdp" --begin-incs "include" "src/VBox/HostDrivers/VBoxNetAdp" --end-includes "src/VBox/HostDrivers/VBoxNetAdp" "include/VBox/intnet.h"
|
---|
1121 | my_generate_project "VBoxNetFlt" "src/VBox/HostDrivers/VBoxNetFlt" --begin-incs "include" "src/VBox/HostDrivers/VBoxNetFlt" --end-includes "src/VBox/HostDrivers/VBoxNetFlt" "include/VBox/intnet.h"
|
---|
1122 | my_generate_project "VBoxUSB" "src/VBox/HostDrivers/VBoxUSB" --begin-incs "include" "src/VBox/HostDrivers/VBoxUSB" --end-includes "src/VBox/HostDrivers/VBoxUSB" "include/VBox/usblib*.h" "include/VBox/usbfilter.h"
|
---|
1123 |
|
---|
1124 | # src/VBox/HostServices
|
---|
1125 | my_generate_project "GuestCntl" "src/VBox/HostServices/GuestControl" --begin-incs "include" "src/VBox/HostServices/GuestControl" --end-includes "src/VBox/HostServices/GuestControl"
|
---|
1126 | my_generate_project "DragAndDrop" "src/VBox/HostServices/DragAndDrop" --begin-incs "include" "src/VBox/HostServices/DragAndDrop" --end-includes "src/VBox/HostServices/DragAndDrop"
|
---|
1127 | my_generate_project "GuestProps" "src/VBox/HostServices/GuestProperties" --begin-incs "include" "src/VBox/HostServices/GuestProperties" --end-includes "src/VBox/HostServices/GuestProperties"
|
---|
1128 | my_generate_project "ShClip-HS" "src/VBox/HostServices/SharedClipboard" --begin-incs "include" "src/VBox/HostServices/SharedClipboard" --end-includes "src/VBox/HostServices/SharedClipboard"
|
---|
1129 | my_generate_project "SharedFolders" "src/VBox/HostServices/SharedFolders" --begin-incs "include" "src/VBox/HostServices/SharedFolders" --end-includes "src/VBox/HostServices/SharedFolders" "include/VBox/shflsvc.h"
|
---|
1130 | my_generate_project "OpenGL-HS" "src/VBox/HostServices/SharedOpenGL" --begin-incs "include" "src/VBox/HostServices/SharedOpenGL" --end-includes "src/VBox/HostServices/SharedOpenGL"
|
---|
1131 |
|
---|
1132 | # src/VBox/ImageMounter
|
---|
1133 | my_generate_project "ImageMounter" "src/VBox/ImageMounter" --begin-incs "include" "src/VBox/ImageMounter" --end-includes "src/VBox/ImageMounter"
|
---|
1134 |
|
---|
1135 | # src/VBox/Installer
|
---|
1136 | my_generate_project "Installers" "src/VBox/Installer" --begin-incs "include" --end-includes "src/VBox/Installer"
|
---|
1137 |
|
---|
1138 | # src/VBox/Main
|
---|
1139 | my_generate_project "Main" "src/VBox/Main" --begin-incs "include" "src/VBox/Main/include" --end-includes "src/VBox/Main" "include/VBox/com" "include/VBox/settings.h"
|
---|
1140 | ## @todo seperate webservices and Main. pick the right headers. added generated headers.
|
---|
1141 |
|
---|
1142 | # src/VBox/Network
|
---|
1143 | my_generate_project "Net-DHCP" "src/VBox/NetworkServices/DHCP" --begin-incs "include" "src/VBox/NetworkServices/NetLib" --end-includes "src/VBox/NetworkServices/DHCP"
|
---|
1144 | my_generate_project "Net-NAT" "src/VBox/NetworkServices/NAT" --begin-incs "include" "src/VBox/NetworkServices/NAT" --end-includes "src/VBox/NetworkServices/NAT" "src/VBox/Devices/Network/slirp"
|
---|
1145 | my_generate_project "Net-NetLib" "src/VBox/NetworkServices/NetLib" --begin-incs "include" "src/VBox/NetworkServices/NetLib" --end-includes "src/VBox/NetworkServices/NetLib"
|
---|
1146 |
|
---|
1147 | # src/VBox/RDP
|
---|
1148 | my_generate_project "RDP-Client" "src/VBox/RDP/client-1.8.3" --begin-incs "include" "src/VBox/RDP/client-1.8.3" --end-includes "src/VBox/RDP/client-1.8.3"
|
---|
1149 | my_generate_project "RDP-Server" "src/VBox/RDP/server" --begin-incs "include" "src/VBox/RDP/server" --end-includes "src/VBox/RDP/server"
|
---|
1150 | my_generate_project "RDP-WebClient" "src/VBox/RDP/webclient" --begin-incs "include" "src/VBox/RDP/webclient" --end-includes "src/VBox/RDP/webclient"
|
---|
1151 | my_generate_project "RDP-Misc" "src/VBox/RDP" --begin-incs "include" --end-includes "src/VBox/RDP/auth" "src/VBox/RDP/tscpasswd" "src/VBox/RDP/x11server"
|
---|
1152 |
|
---|
1153 | # src/VBox/Storage
|
---|
1154 | my_generate_project "Storage" "src/VBox/Storage" --begin-incs "include" "src/VBox/Storage" --end-includes "src/VBox/Storage"
|
---|
1155 |
|
---|
1156 | # src/VBox/ValidationKit
|
---|
1157 | my_generate_project "ValidationKit" "src/VBox/ValidationKit" --begin-incs "include" --end-includes "src/VBox/ValidationKit"
|
---|
1158 |
|
---|
1159 | # src/VBox/ExtPacks
|
---|
1160 | my_generate_project "ExtPacks" "src/VBox/ExtPacks" --begin-incs "include" --end-includes "src/VBox/ExtPacks"
|
---|
1161 |
|
---|
1162 | # src/apps/adpctl - misplaced.
|
---|
1163 | my_generate_project "adpctl" "src/apps/adpctl" --begin-incs "include" --end-includes "src/apps/adpctl"
|
---|
1164 |
|
---|
1165 | # src/bldprogs
|
---|
1166 | my_generate_project "bldprogs" "src/bldprogs" --begin-incs "include" --end-includes "src/bldprogs"
|
---|
1167 |
|
---|
1168 | # A few things from src/lib
|
---|
1169 | my_generate_project "zlib" "src/libs/zlib-1.2.8" --begin-incs "include" --end-includes "src/libs/zlib-1.2.8/*.c" "src/libs/zlib-1.2.8/*.h"
|
---|
1170 | my_generate_project "liblzf" "src/libs/liblzf-3.4" --begin-incs "include" --end-includes "src/libs/liblzf-3.4"
|
---|
1171 | my_generate_project "libpng" "src/libs/libpng-1.2.54" --begin-incs "include" --end-includes "src/libs/libpng-1.2.54/*.c" "src/libs/libpng-1.2.54/*.h"
|
---|
1172 | my_generate_project "openssl" "src/libs/openssl-1.0.1t" --begin-incs "include" "src/libs/openssl-1.0.1t/crypto" --end-includes "src/libs/openssl-1.0.1t"
|
---|
1173 | my_generate_project "curl" "src/libs/curl-7.47.0" --begin-incs "include" "src/libs/curl-7.47.0/include" --end-includes "src/libs/curl-7.47.0"
|
---|
1174 | my_generate_project "kStuff" "src/libs/kStuff" --begin-incs "include" "src/libs/kStuff/kStuff/include" --end-includes "src/libs/kStuff"
|
---|
1175 |
|
---|
1176 |
|
---|
1177 | # include/VBox
|
---|
1178 | my_generate_project "VBoxHeaders" "include" --begin-incs "include" --end-includes "include/VBox"
|
---|
1179 |
|
---|
1180 | # Misc
|
---|
1181 | my_generate_project "misc" "." --begin-incs "include" --end-includes \
|
---|
1182 | "configure" \
|
---|
1183 | "configure.vbs" \
|
---|
1184 | "Config.kmk" \
|
---|
1185 | "Makefile.kmk" \
|
---|
1186 | "src/Makefile.kmk" \
|
---|
1187 | "src/VBox/Makefile.kmk"
|
---|
1188 |
|
---|
1189 |
|
---|
1190 | # out/x.y/z/bin/sdk/bindings/xpcom
|
---|
1191 | XPCOM_INCS="src/libs/xpcom18a4"
|
---|
1192 | for d in \
|
---|
1193 | "out/${KBUILD_TARGET}.${KBUILD_TARGET_ARCH}/${KBUILD_TYPE}/dist/sdk/bindings/xpcom" \
|
---|
1194 | "out/${BUILD_TARGET}.${BUILD_TARGET_ARCH}/${BUILD_TYPE}/dist/sdk/bindings/xpcom" \
|
---|
1195 | "out/${KBUILD_TARGET}.${KBUILD_TARGET_ARCH}/${KBUILD_TYPE}/bin/sdk/bindings/xpcom" \
|
---|
1196 | "out/${BUILD_TARGET}.${BUILD_TARGET_ARCH}/${BUILD_TYPE}/bin/sdk/bindings/xpcom" \
|
---|
1197 | "out/linux.amd64/debug/bin/sdk/bindings/xpcom" \
|
---|
1198 | "out/linux.x86/debug/bin/sdk/bindings/xpcom" \
|
---|
1199 | "out/darwin.amd64/debug/dist/sdk/bindings/xpcom" \
|
---|
1200 | "out/darwin.x86/debug/bin/dist/bindings/xpcom" \
|
---|
1201 | "out/haiku.amd64/debug/bin/sdk/bindings/xpcom" \
|
---|
1202 | "out/haiku.x86/debug/bin/sdk/bindings/xpcom" \
|
---|
1203 | "out/solaris.amd64/debug/bin/sdk/bindings/xpcom" \
|
---|
1204 | "out/solaris.x86/debug/bin/sdk/bindings/xpcom";
|
---|
1205 | do
|
---|
1206 | if test -d "${MY_ROOT_DIR}/${d}"; then
|
---|
1207 | my_generate_project "SDK-xpcom" "${d}" --begin-incs "include" "${d}/include" --end-includes "${d}"
|
---|
1208 | XPCOM_INCS="${d}/include"
|
---|
1209 | break
|
---|
1210 | fi
|
---|
1211 | done
|
---|
1212 |
|
---|
1213 | # lib/xpcom
|
---|
1214 | my_generate_project "xpcom" "src/libs/xpcom18a4" --begin-incs "include" "${XPCOM_INCS}" --end-includes "src/libs/xpcom18a4"
|
---|
1215 |
|
---|
1216 | my_generate_workspace
|
---|
1217 |
|
---|
1218 |
|
---|
1219 | #
|
---|
1220 | # Update the history file if present.
|
---|
1221 | #
|
---|
1222 | MY_FILE="${MY_WS_NAME}histu"
|
---|
1223 | if test -f "${MY_FILE}"; then
|
---|
1224 | echo "Updating ${MY_FILE}..."
|
---|
1225 | ${MY_MV} -f "${MY_FILE}" "${MY_FILE}.old"
|
---|
1226 | ${MY_SED} -n \
|
---|
1227 | -e '/PROJECT_CACHE/d' \
|
---|
1228 | -e '/\[TreeExpansion2\]/d' \
|
---|
1229 | -e '/^\[/p' \
|
---|
1230 | -e '/: /p' \
|
---|
1231 | -e '/^CurrentProject/p' \
|
---|
1232 | "${MY_FILE}.old" > "${MY_FILE}"
|
---|
1233 | fi
|
---|
1234 |
|
---|
1235 |
|
---|
1236 | #
|
---|
1237 | # Generate and update the usercpp.h/unxcpp.h file.
|
---|
1238 | #
|
---|
1239 | my_generate_usercpp_h
|
---|
1240 |
|
---|
1241 |
|
---|
1242 | echo "done"
|
---|