Fix loop in test_popcount

This commit is contained in:
2024-01-04 09:01:12 +01:00
parent 0dcca10559
commit 459f18a019
2 changed files with 4 additions and 4 deletions

View File

@@ -208,7 +208,7 @@ $(SLIB): $(OBJ) | $(LIBDIR)
##################################### tests
.PHONY: tests cleanbin cleanbindir
tests: libs $(BIN)
tests: $(BIN)
cleanbin:
$(call rmfiles,$(TARGET),binary)
@@ -216,7 +216,7 @@ cleanbin:
cleanbindir:
$(call rmdir,$(BINDIR),binaries)
$(BINDIR)/%: $(TESTDIR)/%.c | $(BINDIR)
$(BINDIR)/%: $(TESTDIR)/%.c libs | $(BINDIR)
$(CC) $(CPPFLAGS) $(CFLAGS) $< $(LDFLAGS) $(LIBS) -o $@
##################################### pre-processed (.i) and assembler (.s) output