Makefile: add missing dependency to sl_test - lchat - A line oriented chat front end for ii.
 (HTM) git clone git://git.suckless.org/lchat
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
 (DIR) commit 5b8b8e3920d8e9a574a55e65a33b96c8d8e23ba4
 (DIR) parent a2e85fdc57c1322c16d120d1865acc8f13f4c8bd
 (HTM) Author: Tom Schwindl <schwindl@posteo.de>
       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(-)
       ---
 (DIR) 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