aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-03-07 00:49:29 -0300
committerEuAndreh <eu@euandre.org>2021-03-07 00:49:29 -0300
commit794c7db38c810ca986245bce46c42f1d9486ee0b (patch)
tree75da6a83e37a3f5e95e01a1473b14603ffa41938 /Makefile
parent.gitignore: Add vgcore.* (diff)
downloadremembering-794c7db38c810ca986245bce46c42f1d9486ee0b.tar.gz
remembering-794c7db38c810ca986245bce46c42f1d9486ee0b.tar.xz
Makefile: Add missing -lfallible library
Diffstat (limited to '')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5f16762..8dc1e3f 100644
--- a/Makefile
+++ b/Makefile
@@ -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