Lines Matching refs:in

3 # mkmakemod.sh: generate Makefile.in files for module building
10 # $1 = subdirectory to look in, relative to $top_srcdir
14 # must be set correctly in the environment.
16 # This looks in $1, and uses all the *.mdd files there. Each .mdd file
36 # The .mdd file may also include a Makefile.in fragment between lines
37 # `:<<\Make' and `Make' -- this will be copied into Makemod.in.
39 # The resulting Makemod.in knows how to build each module that is defined.
52 # included Makemod.in.in
55 # in Makemod.in.in, but some of the macros that it creates are needed in the
95 trap "rm -f $the_subdir/${the_makefile}.in; exit 1" 1 2 15
96 echo "creating $the_subdir/${the_makefile}.in"
97 exec 3>&1 >$the_subdir/${the_makefile}.in
98 echo "##### ${the_makefile}.in generated automatically by mkmakemod.sh"
128 for module in $module_list; do
131 case $modfile in
135 case "$all_subdirs " in
146 case $is_dynamic@$bin_mods in
172 echo "##### ===== INCLUDING Makemod.in.in ===== #####"
174 cat $top_srcdir/Src/Makemod.in.in
177 case $the_subdir in
189 for mddname in $here_mddnames; do
207 for dep in $moddeps; do
213 case "$binmod" in
219 case $the_subdir in
223 case "$dep" in
234 case "$other_mdhs " in
239 case "$other_exports " in
243 case "$dep" in
251 case "$other_modules " in
258 case "$remote_mdhs " in
263 case "$remote_exports " in
267 case "$dep" in
275 case "$remote_modules " in
284 case "$mododeps " in
316 case " $all_modules" in *" ${mddname}."*)
376 for hdep in $modhdeps; do
385 echo " for hdr in $headers; do \\"
400 echo " for epro in \$(EPRO_${mddname}); do \\"
426 for mdh in $remote_mdhs; do
436 for export in $remote_exports; do
446 for mdll in $remote_modules; do
458 echo "##### End of ${the_makefile}.in"
468 --file=$the_subdir/${the_makefile}:$the_subdir/${the_makefile}.in ||