Makefile: add missing dependency to sl_test - lchat - A line oriented chat fron… | |
git clone git://git.suckless.org/lchat | |
Log | |
Files | |
Refs | |
README | |
--- | |
commit 5b8b8e3920d8e9a574a55e65a33b96c8d8e23ba4 | |
parent a2e85fdc57c1322c16d120d1865acc8f13f4c8bd | |
Author: Tom Schwindl <[email protected]> | |
Date: Fri, 30 Dec 2022 12:42:36 +0100 | |
Makefile: add missing dependency to sl_test | |
Diffstat: | |
M Makefile | 4 ++-- | |
1 file changed, 2 insertions(+), 2 deletions(-) | |
--- | |
diff --git 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 |