From: Michael D. Lowis Date: Wed, 10 Oct 2018 01:12:38 +0000 (-0400) Subject: added src folder X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=a31beb51dae53d00813ab4b49ea6ebe5d4342466;p=projs%2Ftide.git added src folder --- diff --git a/Makefile b/Makefile index bf4c604..13310ff 100644 --- a/Makefile +++ b/Makefile @@ -3,15 +3,15 @@ MAKEFLAGS = -j4 BINS = tide MAN1 = docs/tide.1 -LIBEDIT_OBJS = \ - lib/buf.o \ - lib/utf8.o \ - lib/job.o \ - lib/view.o \ - lib/x11.o \ - lib/config.o - -TEST_BINS = \ +LIBEDIT_OBJS = \ + src/lib/buf.o \ + src/lib/utf8.o \ + src/lib/job.o \ + src/lib/view.o \ + src/lib/x11.o \ + src/lib/config.o + +TEST_BINS = \ tests/libedit include config.mk diff --git a/lib/buf.c b/src/lib/buf.c similarity index 100% rename from lib/buf.c rename to src/lib/buf.c diff --git a/lib/config.c b/src/lib/config.c similarity index 100% rename from lib/config.c rename to src/lib/config.c diff --git a/lib/job.c b/src/lib/job.c similarity index 100% rename from lib/job.c rename to src/lib/job.c diff --git a/lib/utf8.c b/src/lib/utf8.c similarity index 100% rename from lib/utf8.c rename to src/lib/utf8.c diff --git a/lib/view.c b/src/lib/view.c similarity index 100% rename from lib/view.c rename to src/lib/view.c diff --git a/lib/x11.c b/src/lib/x11.c similarity index 100% rename from lib/x11.c rename to src/lib/x11.c