diff options
author | Dmitrij D. Czarkoff <czarkoff@gmail.com> | 2016-02-21 15:03:21 +0100 |
---|---|---|
committer | Dmitrij D. Czarkoff <czarkoff@gmail.com> | 2016-02-21 15:03:21 +0100 |
commit | b4dfe40a577aa23bcac2d580122a13246e431d66 (patch) | |
tree | 910a6bb49b20a26cb594c38ee2dcf513bdb77ba5 | |
parent | 1efd760b8d7593f05d700f122fe8c3f61c370bde (diff) | |
download | imv-b4dfe40a577aa23bcac2d580122a13246e431d66.tar.gz |
Fix "check" target
for i in "..."; do ...; done ideom guarantees single iteration with $i set to
everything between "in" and ';'.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ $(BUILDDIR)/test_%: test/%.c src/%.c check: $(BUILDDIR) $(TESTS) @echo "RUNNING TESTS" - $(MUTE)for t in "$(TESTS)"; do $$t; done + $(MUTE)for t in $(TESTS); do $$t; done clean: $(MUTE)$(RM) -Rf $(BUILDDIR) |