blob: 9be0361bfd10c7756c7eb373c4b8fdb18c858f8d [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301# $Id: mk-test.awk,v 1.5 2007/01/20 21:28:47 tom Exp $
2##############################################################################
3# Copyright (c) 2006,2007 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
31#
32# generate Makefile for ncurses tests.
33BEGIN {
34 first = 1;
35 count = 0;
36 }
37/^#/ {
38 next;
39 }
40/^$/ {
41 next;
42 }
43 {
44 if (first) {
45 print "# generated by mk-test.awk\n";
46 first = 0;
47 }
48 progs[count] = $1;
49 flags[count] = $2;
50 using[count] = $3;
51 files[count] = "";
52 for (n = 4; n <= NF; ++n) {
53 files[count] = sprintf("%s $(MODEL)/%s$o", files[count], $n);
54 }
55 count = count + 1;
56 }
57END {
58 for (n = 0; n < count; ++n) {
59 if (n == 0) {
60 printf "TESTS\t= ";
61 } else {
62 printf "\t ";
63 }
64 printf "$(destdir)%s$x", progs[n];
65 if (n < count - 1) {
66 printf " \\";
67 }
68 print "";
69 }
70 print ""
71 print "all: $(TESTS)"
72 print ""
73 print "sources:"
74 print ""
75 print "tags:"
76 print " ctags *.[ch]"
77 print ""
78 print "libs \\"
79 print "install \\"
80 print "install.libs \\"
81 print "install.test:"
82 print ""
83 print "uninstall:"
84 print "uninstall.libs:"
85 print "uninstall.test:"
86 print ""
87 print "mostlyclean ::"
88 print " -rm -f core tags TAGS *~ *.bak *.i *.ln *.atac trace"
89 print ""
90 print "clean :: mostlyclean"
91 print " -sh -c \"if test -n '$x' ; then $(MAKE) clean x=''; fi\""
92 print " -rm -rf *$o screendump *.lis $(TESTS) .libs"
93 print ""
94 print "distclean :: clean"
95 print " -rm -f Makefile ncurses_cfg.h config.*"
96 print ""
97 print "realclean :: distclean"
98 print ""
99 print "lint:"
100 print " sh -c 'for N in $(TESTS); do echo LINT:$$N; $(LINT) $(LINT_OPTS) $(CPPFLAGS) $(srcdir)/$$N.c $(LINT_LIBS); done'"
101
102 if (ECHO_LINK != "") {
103 ECHO_LINK="@ echo linking $@ ... ;"
104 }
105 for (n = 0; n < count; ++n) {
106 print "";
107 printf "$(destdir)%s$x:%s %s\n", progs[n], files[n], using[n];
108 printf "\t%s$(LINK) -o $@%s %s\n", ECHO_LINK, files[n], flags[n];
109 }
110
111 }