From 9430e6e4e7fc09e8ca6a2fd5e3fcafa07818542e Mon Sep 17 00:00:00 2001 From: Steve Bennett Date: Sat, 14 Nov 2020 10:16:43 +1000 Subject: [PATCH] include utf8.c and utf8.h in the right order In linenoise-ship.c - need these first Signed-off-by: Steve Bennett --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1aa01ec..d8746ab 100644 --- a/Makefile +++ b/Makefile @@ -19,5 +19,5 @@ ship: linenoise-ship.c # - If you want win32 support, also copy linenoise-win32.c # - If you never want to support utf-8, you can omit utf8.h and utf8.c -linenoise-ship.c: stringbuf.h stringbuf.c utf8.h utf8.c linenoise.c +linenoise-ship.c: utf8.h utf8.c stringbuf.h stringbuf.c linenoise.c cat $^ >$@ -- 2.44.0