From: Steve Bennett Date: Sat, 14 Nov 2020 00:16:43 +0000 (+1000) Subject: include utf8.c and utf8.h in the right order X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=9430e6e4e7fc09e8ca6a2fd5e3fcafa07818542e;p=linenoise.git include utf8.c and utf8.h in the right order In linenoise-ship.c - need these first Signed-off-by: Steve Bennett --- 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 $^ >$@