commit 5b8b8e3920d8e9a574a55e65a33b96c8d8e23ba4
Author:     Tom Schwindl <[email protected]>
AuthorDate: Fri Dec 30 12:42:36 2022 +0100
Commit:     Jan Klemkow <[email protected]>
CommitDate: Mon Jan 2 19:48:17 2023 +0100

    Makefile: add missing dependency to sl_test

diff --git a/Makefile b/Makefile
index 5c05d88..bb41165 100644
--- a/Makefile
+++ b/Makefile
@@ -36,8 +36,8 @@ filter/indent: filter/indent.c util.o util.h
 sl_test.o: sl_test.c slackline.h
        $(CC) $(CFLAGS) -Wno-sign-compare -c -o $@ sl_test.c
 
-sl_test: sl_test.o slackline.o slackline.h
-       $(CC) $(CFLAGS) -o $@ sl_test.o slackline.o $(LIBS)
+sl_test: sl_test.o slackline.o slackline_emacs.o slackline.h
+       $(CC) $(CFLAGS) -o $@ sl_test.o slackline.o slackline_emacs.o $(LIBS)
 
 slackline.o: slackline.c slackline.h
        $(CC) -c $(CFLAGS) -o $@ slackline.c

Reply via email to