diff options
author | Jared L Wong <jaredlwong@gmail.com> | 2014-04-02 04:10:17 +0000 |
---|---|---|
committer | John Szakmeister <john@szakmeister.net> | 2014-04-04 06:54:23 -0400 |
commit | 86b6f1ccff1ac0face3a0be4ae3e57bf608f8ea9 (patch) | |
tree | 6fd67e9da04001ff28520cadb66b3eff5198fdd4 | |
parent | ad48e7c648eb9a09331b58b64273c3dc2123701b (diff) | |
download | rneovim-86b6f1ccff1ac0face3a0be4ae3e57bf608f8ea9.tar.gz rneovim-86b6f1ccff1ac0face3a0be4ae3e57bf608f8ea9.tar.bz2 rneovim-86b6f1ccff1ac0face3a0be4ae3e57bf608f8ea9.zip |
Changed testdir/Makefile to use Makefile wildcards instead of SUFFIXES
-rw-r--r-- | src/testdir/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/testdir/Makefile b/src/testdir/Makefile index 06223de8c5..033ab732ac 100644 --- a/src/testdir/Makefile +++ b/src/testdir/Makefile @@ -35,8 +35,6 @@ ifdef TESTNUM SCRIPTS := test$(TESTNUM).out endif -.SUFFIXES: .in .out - nongui: nolog $(SCRIPTS) report gui: nolog $(SCRIPTS) $(SCRIPTS_GUI) report @@ -75,7 +73,7 @@ test1.out: .gdbinit test1.in echo; exit 1; fi" -rm -rf X* viminfo -.in.out: .gdbinit +%.out: %.in .gdbinit -rm -rf $*.failed test.ok $(RM_ON_RUN) cp $*.ok test.ok # Sleep a moment to avoid that the xterm title is messed up. |