Changeset 445
- Timestamp:
- Aug 25, 2016, 8:32:16 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/openjdk/hotspot/make/windows/create_obj_files.sh ¶
r309 r445 20 20 # or visit www.oracle.com if you need additional information or have any 21 21 # questions. 22 # 22 # 23 23 # 24 24 … … 109 109 110 110 # Locate all source files in the given directory, excluding files in Src_Files_EXCLUDE. 111 function findsrc { 111 findsrc() 112 { 112 113 $FIND ${1}/. ! -name . -prune \ 113 114 -a \( -name \*.c -o -name \*.cpp -o -name \*.s \) \ 114 -a \! \( -name ${Src_Files_EXCLUDE// / -o -name }\) \115 -a \! \( -name `echo ${Src_Files_EXCLUDE} | sed 's/ / -o -name /g'` \) \ 115 116 | sed 's/.*\/\(.*\)/\1/'; 116 117 } … … 119 120 for e in ${Src_Dirs}; do 120 121 Src_Files="${Src_Files}`findsrc ${e}` " 121 done 122 done 122 123 123 124 Obj_Files=
Note:
See TracChangeset
for help on using the changeset viewer.