blob: 81491768a9d197daac167206893d702cd9d53286 [file] [log] [blame]
Steve Kondikae271bc2015-11-15 02:50:53 +01001# $Id: mk-test.awk,v 1.13 2015/05/01 00:47:26 tom Exp $
2##############################################################################
3# Copyright (c) 2006-2010,2015 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 "# no libraries here"
79 print "libs \\"
80 print "install.libs \\"
81 print "uninstall.libs:"
82 print ""
83 if (INSTALL == "yes") {
84 print "# we might install the test-programs"
85 print "install \\"
86 print "install.test: $(BINDIR) $(TESTS)"
87 print " $(SHELL) -c 'for src in $(TESTS); do \\"
88 print " dst=`echo $$src | $(TRANSFORM)`; \\"
89 print " $(INSTALL_PROG) $$src $(BINDIR)/$$dst; \\"
90 print " done'"
91 print ""
92 print "uninstall \\"
93 print "uninstall.test:"
94 print " $(SHELL) -c 'for src in $(TESTS); do \\"
95 print " dst=`echo $$src | $(TRANSFORM)`; \\"
96 print " rm -f $(BINDIR)/$$dst; \\"
97 print " done'"
98 } else {
99 print "install \\"
100 print "install.test \\"
101 print "uninstall \\"
102 print "uninstall.test:"
103 }
104 print ""
105 print "mostlyclean ::"
106 print " -rm -f core tags TAGS *~ *.bak *.i *.ln *.atac trace"
107 print ""
108 print "clean :: mostlyclean"
109 print " -$(SHELL) -c \"if test -n '$x' ; then $(MAKE) clean x=''; fi\""
110 print " -rm -rf *$o screendump *.lis $(TESTS) .libs *.dSYM"
111 print ""
112 print "distclean :: clean"
113 print " -rm -f Makefile ncurses_cfg.h config.status config.log"
114 print ""
115 print "realclean :: distclean"
116 print ""
117 print "lint:"
118 print " $(SHELL) -c 'for N in $(TESTS); do echo LINT:$$N; $(LINT) $(LINT_OPTS) $(CPPFLAGS) $(srcdir)/$$N.c $(LINT_LIBS); done'"
119 print "$(BINDIR) :"
120 print " mkdir -p $@"
121
122
123 if (ECHO_LINK != "") {
124 ECHO_LINK="@ echo linking $@ ... ;"
125 }
126 for (n = 0; n < count; ++n) {
127 print "";
128 printf "$(destdir)%s$x:%s %s\n", progs[n], files[n], using[n];
129 printf "\t%s$(LINK) -o $@%s %s\n", ECHO_LINK, files[n], flags[n];
130 }
131
132 }