]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/mk-test.awk
ncurses 6.1 - patch 20180317
[ncurses.git] / test / mk-test.awk
1 # $Id: mk-test.awk,v 1.21 2018/01/15 15:59:25 tom Exp $
2 ##############################################################################
3 # Copyright (c) 2006-2017,2018 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                 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         }
57 END     {
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   "SCRIPTS = \\"
71         print   "       $(srcdir)/savescreen.sh \\"
72         print   "       $(srcdir)/tput-colorcube \\"
73         print   "       $(srcdir)/tput-initc \\"
74         print   "       $(srcdir)/tracemunch"
75         print   "DATAFILES = \\"
76         print   "       $(srcdir)/*.x* \\"
77         print   "       $(srcdir)/*.dat"
78         print   ""
79         print   "all: $(TESTS)"
80         print   ""
81         print   "sources:"
82         print   ""
83         print   "tags:"
84         print   "       $(CTAGS) *.[ch]"
85         print   ""
86         print   "# no libraries here"
87         print   "libs \\"
88         print   "install.libs \\"
89         print   "uninstall.libs:"
90         print   ""
91         if (INSTALL == "yes") {
92                 print   "# we might install the test-programs"
93                 print   "install \\"
94                 print   "install.test: $(BINDIR) $(DATADIR) $(TESTS)"
95
96                 print   "       @$(SHELL) -c 'for src in $(TESTS); do \\"
97                 print   "       dst=`echo $$src | $(TRANSFORM)`; \\"
98                 print   "       echo \"installing $$src -> $(BINDIR)/$$dst\"; \\"
99                 print   "       $(INSTALL_PROG) $$src $(BINDIR)/$$dst; \\"
100                 print   "       done'"
101
102                 print   "       @$(SHELL) -c 'for src in $(SCRIPTS); do \\"
103                 print   "       dst=`echo $$src | sed -e 's,^.*/,,' | $(TRANSFORM)`; \\"
104                 print   "       echo \"installing $$src -> $(BINDIR)/$$dst\"; \\"
105                 print   "       $(INSTALL_SCRIPT) $$src $(BINDIR)/$$dst; \\"
106                 print   "       done'"
107
108                 print   "       @$(SHELL) -c 'for src in $(DATAFILES); do \\"
109                 print   "       dst=`echo $$src | sed -e 's,^.*/,,'`; \\"
110                 print   "       echo \"installing $$src -> $(DATADIR)/$$dst\"; \\"
111                 print   "       $(INSTALL_DATA) $$src $(DATADIR)/$$dst; \\"
112                 print   "       done'"
113                 print   ""
114                 print   "uninstall \\"
115                 print   "uninstall.test:"
116
117                 print   "       @$(SHELL) -c 'for src in $(TESTS); do \\"
118                 print   "       dst=`echo $$src | $(TRANSFORM)`; \\"
119                 print   "       rm -f $(BINDIR)/$$dst; \\"
120                 print   "       done'"
121
122                 print   "       @$(SHELL) -c 'for src in $(SCRIPTS); do \\"
123                 print   "       dst=`echo $$src | sed -e 's,^.*/,,' | $(TRANSFORM)`; \\"
124                 print   "       rm -f $(BINDIR)/$$dst; \\"
125                 print   "       done'"
126
127                 print   "       @$(SHELL) -c 'for src in $(DATAFILES); do \\"
128                 print   "       dst=`echo $$src | sed -e 's,^.*/,,'`; \\"
129                 print   "       rm -f $(DATADIR)/$$dst; \\"
130                 print   "       done'"
131         } else {
132                 print   "install \\"
133                 print   "install.test \\"
134                 print   "uninstall \\"
135                 print   "uninstall.test:"
136         }
137         print   ""
138         print   "mostlyclean ::"
139         print   "       -rm -f core tags TAGS *~ *.bak *.i *.ln *.atac trace"
140         print   ""
141         print   "clean :: mostlyclean"
142         print   "       -$(SHELL) -c \"if test -n '$x' ; then $(MAKE) clean x=''; fi\""
143         print   "       -rm -rf *$o screendump *.lis $(TESTS) .libs *.dSYM"
144         print   ""
145         print   "distclean :: clean"
146         print   "       -rm -f Makefile ncurses_cfg.h config.status config.log"
147         print   ""
148         print   "realclean :: distclean"
149         print   ""
150         print   "lint:"
151         print   "       $(SHELL) -c 'for N in $(TESTS); do echo LINT:$$N; $(LINT) $(LINT_OPTS) $(CPPFLAGS) $(srcdir)/$$N.c $(LINT_LIBS); done'"
152         print   "$(BINDIR) $(DATADIR) :"
153         print   "       mkdir -p $@"
154
155
156         if (ECHO_LINK != "") {
157                 ECHO_LINK="@ echo linking $@ ... ;"
158         }
159         for (n = 0; n < count; ++n) {
160                 print "";
161                 printf "$(destdir)%s$x:%s %s\n", progs[n], files[n], using[n];
162                 printf "\t%s$(LINK) -o $@%s %s\n", ECHO_LINK, files[n], flags[n];
163         }
164
165         }