]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - test/mk-test.awk
ncurses 6.2 - patch 20200418
[ncurses.git] / test / mk-test.awk
index df560ebfa64a2a1f30f05b2d04a455b73365ca93..ac4203aaac56a3d4b10d7f2b61123cce167c1c9c 100644 (file)
@@ -1,6 +1,7 @@
-# $Id: mk-test.awk,v 1.12 2010/11/06 23:06:48 tom Exp $
+# $Id: mk-test.awk,v 1.23 2020/02/02 23:34:34 tom Exp $
 ##############################################################################
 ##############################################################################
-# Copyright (c) 2006-2007,2010 Free Software Foundation, Inc.                #
+# Copyright 2019,2020 Thomas E. Dickey                                       #
+# Copyright 2006-2017,2018 Free Software Foundation, Inc.                    #
 #                                                                            #
 # Permission is hereby granted, free of charge, to any person obtaining a    #
 # copy of this software and associated documentation files (the "Software"), #
 #                                                                            #
 # Permission is hereby granted, free of charge, to any person obtaining a    #
 # copy of this software and associated documentation files (the "Software"), #
@@ -67,11 +68,21 @@ END {
                }
                print "";
        }
                }
                print "";
        }
+       print   "SCRIPTS = \\"
+       print   "       $(srcdir)/savescreen.sh \\"
+       print   "       $(srcdir)/tput-colorcube \\"
+       print   "       $(srcdir)/tput-initc \\"
+       print   "       $(srcdir)/tracemunch"
+       print   "DATAFILES = \\"
+       print   "       $(srcdir)/*.x* \\"
+       print   "       $(srcdir)/*.dat"
        print   ""
        print   "all: $(TESTS)"
        print   ""
        print   "sources:"
        print   ""
        print   ""
        print   "all: $(TESTS)"
        print   ""
        print   "sources:"
        print   ""
+       print   "check:"
+       print   "       @ echo The test-programs are interactive"
        print   "tags:"
        print   "       $(CTAGS) *.[ch]"
        print   ""
        print   "tags:"
        print   "       $(CTAGS) *.[ch]"
        print   ""
@@ -83,18 +94,43 @@ END {
        if (INSTALL == "yes") {
                print   "# we might install the test-programs"
                print   "install \\"
        if (INSTALL == "yes") {
                print   "# we might install the test-programs"
                print   "install \\"
-               print   "install.test: $(BINDIR) $(TESTS)"
-               print   "       $(SHELL) -c 'for src in $(TESTS); do \\"
+               print   "install.test: $(BINDIR) $(DATADIR) $(TESTS)"
+
+               print   "       @$(SHELL) -c 'for src in $(TESTS); do \\"
                print   "       dst=`echo $$src | $(TRANSFORM)`; \\"
                print   "       dst=`echo $$src | $(TRANSFORM)`; \\"
+               print   "       echo \"installing $$src -> $(BINDIR)/$$dst\"; \\"
                print   "       $(INSTALL_PROG) $$src $(BINDIR)/$$dst; \\"
                print   "       done'"
                print   "       $(INSTALL_PROG) $$src $(BINDIR)/$$dst; \\"
                print   "       done'"
+
+               print   "       @$(SHELL) -c 'for src in $(SCRIPTS); do \\"
+               print   "       dst=`echo $$src | sed -e 's,^.*/,,' | $(TRANSFORM)`; \\"
+               print   "       echo \"installing $$src -> $(BINDIR)/$$dst\"; \\"
+               print   "       $(INSTALL_SCRIPT) $$src $(BINDIR)/$$dst; \\"
+               print   "       done'"
+
+               print   "       @$(SHELL) -c 'for src in $(DATAFILES); do \\"
+               print   "       dst=`echo $$src | sed -e 's,^.*/,,'`; \\"
+               print   "       echo \"installing $$src -> $(DATADIR)/$$dst\"; \\"
+               print   "       $(INSTALL_DATA) $$src $(DATADIR)/$$dst; \\"
+               print   "       done'"
                print   ""
                print   "uninstall \\"
                print   "uninstall.test:"
                print   ""
                print   "uninstall \\"
                print   "uninstall.test:"
-               print   "       $(SHELL) -c 'for src in $(TESTS); do \\"
+
+               print   "       @$(SHELL) -c 'for src in $(TESTS); do \\"
                print   "       dst=`echo $$src | $(TRANSFORM)`; \\"
                print   "       rm -f $(BINDIR)/$$dst; \\"
                print   "       done'"
                print   "       dst=`echo $$src | $(TRANSFORM)`; \\"
                print   "       rm -f $(BINDIR)/$$dst; \\"
                print   "       done'"
+
+               print   "       @$(SHELL) -c 'for src in $(SCRIPTS); do \\"
+               print   "       dst=`echo $$src | sed -e 's,^.*/,,' | $(TRANSFORM)`; \\"
+               print   "       rm -f $(BINDIR)/$$dst; \\"
+               print   "       done'"
+
+               print   "       @$(SHELL) -c 'for src in $(DATAFILES); do \\"
+               print   "       dst=`echo $$src | sed -e 's,^.*/,,'`; \\"
+               print   "       rm -f $(DATADIR)/$$dst; \\"
+               print   "       done'"
        } else {
                print   "install \\"
                print   "install.test \\"
        } else {
                print   "install \\"
                print   "install.test \\"
@@ -107,7 +143,7 @@ END {
        print   ""
        print   "clean :: mostlyclean"
        print   "       -$(SHELL) -c \"if test -n '$x' ; then $(MAKE) clean x=''; fi\""
        print   ""
        print   "clean :: mostlyclean"
        print   "       -$(SHELL) -c \"if test -n '$x' ; then $(MAKE) clean x=''; fi\""
-       print   "       -rm -rf *$o screendump *.lis $(TESTS) .libs"
+       print   "       -rm -rf *$o screendump *.lis $(TESTS) .libs *.dSYM"
        print   ""
        print   "distclean :: clean"
        print   "       -rm -f Makefile ncurses_cfg.h config.status config.log"
        print   ""
        print   "distclean :: clean"
        print   "       -rm -f Makefile ncurses_cfg.h config.status config.log"
@@ -116,7 +152,7 @@ END {
        print   ""
        print   "lint:"
        print   "       $(SHELL) -c 'for N in $(TESTS); do echo LINT:$$N; $(LINT) $(LINT_OPTS) $(CPPFLAGS) $(srcdir)/$$N.c $(LINT_LIBS); done'"
        print   ""
        print   "lint:"
        print   "       $(SHELL) -c 'for N in $(TESTS); do echo LINT:$$N; $(LINT) $(LINT_OPTS) $(CPPFLAGS) $(srcdir)/$$N.c $(LINT_LIBS); done'"
-       print   "$(BINDIR) :"
+       print   "$(BINDIR) $(DATADIR) :"
        print   "       mkdir -p $@"
 
 
        print   "       mkdir -p $@"