]> git.mdlowis.com Git - projs/tide.git/commitdiff
added src folder
authorMichael D. Lowis <mike@mdlowis.com>
Wed, 10 Oct 2018 01:12:38 +0000 (21:12 -0400)
committerMichael D. Lowis <mike@mdlowis.com>
Wed, 10 Oct 2018 01:12:38 +0000 (21:12 -0400)
Makefile
src/lib/buf.c [moved from lib/buf.c with 100% similarity]
src/lib/config.c [moved from lib/config.c with 100% similarity]
src/lib/job.c [moved from lib/job.c with 100% similarity]
src/lib/utf8.c [moved from lib/utf8.c with 100% similarity]
src/lib/view.c [moved from lib/view.c with 100% similarity]
src/lib/x11.c [moved from lib/x11.c with 100% similarity]

index bf4c604150a1155d0764bc762d9dbb1a23c5deb5..13310ff7b4e1ffd5c9c50476a4f3c685101dc324 100644 (file)
--- 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
similarity index 100%
rename from lib/buf.c
rename to src/lib/buf.c
similarity index 100%
rename from lib/config.c
rename to src/lib/config.c
similarity index 100%
rename from lib/job.c
rename to src/lib/job.c
similarity index 100%
rename from lib/utf8.c
rename to src/lib/utf8.c
similarity index 100%
rename from lib/view.c
rename to src/lib/view.c
similarity index 100%
rename from lib/x11.c
rename to src/lib/x11.c