diff options
author | EuAndreh <eu@euandre.org> | 2021-03-07 00:49:29 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-03-07 00:49:29 -0300 |
commit | 794c7db38c810ca986245bce46c42f1d9486ee0b (patch) | |
tree | 75da6a83e37a3f5e95e01a1473b14603ffa41938 | |
parent | .gitignore: Add vgcore.* (diff) | |
download | remembering-794c7db38c810ca986245bce46c42f1d9486ee0b.tar.gz remembering-794c7db38c810ca986245bce46c42f1d9486ee0b.tar.xz |
Makefile: Add missing -lfallible library
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ run-tests: $(sources) $(CC) $(CFLAGS) $(DEFS) $(LDFLAGS) -DTEST -o $@ $(sources) $(LDLIBS) fallible-tests: $(sources) - $(CC) $(CFLAGS) $(DEFS) $(LDFLAGS) -DTEST -DFALLIBLE -o $@ $(sources) $(LDLIBS) + $(CC) $(CFLAGS) $(DEFS) $(LDFLAGS) -DTEST -DFALLIBLE -o $@ $(sources) $(LDLIBS) -lfallible check: all ./run-tests |