1# $Id: mk-2nd.awk,v 1.11 1998/10/17 21:54:21 Alexander.V.Lukyanov Exp $ 2############################################################################## 3# Copyright (c) 1998 Free Software Foundation, Inc. # 4# # 5# Permission is hereby granted, free of charge, to any person obtaining a # 6# copy of this software and associated documentation files (the "Software"), # 7# to deal in the Software without restriction, including without limitation # 8# the rights to use, copy, modify, merge, publish, distribute, distribute # 9# with modifications, sublicense, and/or sell copies of the Software, and to # 10# permit persons to whom the Software is furnished to do so, subject to the # 11# following conditions: # 12# # 13# The above copyright notice and this permission notice shall be included in # 14# all copies or substantial portions of the Software. # 15# # 16# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # 17# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # 18# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL # 19# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # 20# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # 21# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # 22# DEALINGS IN THE SOFTWARE. # 23# # 24# Except as contained in this notice, the name(s) of the above copyright # 25# holders shall not be used in advertising or otherwise to promote the sale, # 26# use or other dealings in this Software without prior written # 27# authorization. # 28############################################################################## 29# 30# Author: Thomas E. Dickey <dickey@clark.net> 1996,1997 31# 32# Generate compile-rules for the modules that we are using in libraries or 33# programs. We are listing them explicitly because we have turned off the 34# suffix rules (to force compilation with the appropriate flags). We could use 35# make-recursion but that would result in makefiles that are useless for 36# development. 37# 38# Variables: 39# model 40# MODEL (uppercase version of "model"; toupper is not portable) 41# echo (yes iff we will show the $(CC) lines) 42# subset ("none", "base", "base+ext_funcs" or "termlib") 43# 44# Fields in src/modules: 45# $1 = module name 46# $2 = progs|lib|c++ 47# $3 = source-directory 48# 49# Fields in src/modules past $3 are dependencies 50# 51BEGIN { 52 found = 0 53 using = 0 54 } 55 /^@/ { 56 using = 0 57 if (subset == "none") { 58 using = 1 59 } else if (index(subset,$2) > 0) { 60 if (using == 0) { 61 if (found == 0) { 62 print "" 63 print "# generated by mk-2nd.awk" 64 print "" 65 } 66 using = 1 67 } 68 } 69 } 70 !/^[@#]/ { 71 if ($0 != "" \ 72 && using != 0) { 73 found = 1 74 if ( $1 != "" ) { 75 print "" 76 if ( $2 == "c++" ) { 77 compile="CXX" 78 suffix=".cc" 79 } else { 80 compile="CC" 81 suffix=".c" 82 } 83 printf "../%s/%s.o :\t%s/%s%s", model, $1, $3, $1, suffix 84 for (n = 4; n <= NF; n++) printf " \\\n\t\t\t%s", $n 85 print "" 86 if ( echo == "yes" ) 87 atsign="" 88 else { 89 atsign="@" 90 printf "\t@echo 'compiling %s (%s)'\n", $1, model 91 } 92 if ( $3 == "." || srcdir == "." ) { 93 dir = $3 "/" 94 sub("^\\$\\(srcdir\\)/","",dir); 95 sub("^\\./","",dir); 96 printf "\t%scd ../%s; $(%s) $(CFLAGS_%s) -c ../%s/%s%s%s", atsign, model, compile, MODEL, name, dir, $1, suffix 97 } else 98 printf "\t%scd ../%s; $(%s) $(CFLAGS_%s) -c %s/%s%s", atsign, model, compile, MODEL, $3, $1, suffix 99 } else { 100 printf "%s", $1 101 for (n = 2; n <= NF; n++) printf " %s", $n 102 } 103 print "" 104 } 105 } 106END { 107 print "" 108 } 109