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