From a4eb852dba1cbe89b21f75d514a18d7bafb95805 Mon Sep 17 00:00:00 2001
From: Arun Prakash Jana <engineerarun@gmail.com>
Date: Sat, 10 Nov 2018 13:39:45 +0530
Subject: [PATCH] Re-structure files

---
 .travis.yml        | 2 +-
 Makefile           | 8 ++++----
 nnn.c => src/nnn.c | 0
 nnn.h => src/nnn.h | 0
 4 files changed, 5 insertions(+), 5 deletions(-)
 rename nnn.c => src/nnn.c (100%)
 rename nnn.h => src/nnn.h (100%)

diff --git a/.travis.yml b/.travis.yml
index 31c2dc0..46b7774 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -27,7 +27,7 @@ script:
   - export CFLAGS=-Werror;
   - make clean; make;
   - make clean;
-  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then if [[ "$CC" == "clang" ]]; then clang-tidy *.h *.c -- -I/usr/include; fi; fi
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then if [[ "$CC" == "clang" ]]; then clang-tidy src/* -- -I/usr/include; fi; fi
 
 before_deploy:
   - cd ..
diff --git a/Makefile b/Makefile
index 12769c6..4d70564 100644
--- a/Makefile
+++ b/Makefile
@@ -16,13 +16,13 @@ else
 	LDLIBS += -lncurses
 endif
 
-DISTFILES = nnn.c nnn.h nnn.1 Makefile README.md LICENSE
-SRC = nnn.c
+DISTFILES = src nnn.1 Makefile README.md LICENSE
+SRC = src/nnn.c
 BIN = nnn
 
 all: $(BIN)
 
-$(SRC): nnn.h
+$(SRC): src/nnn.h
 
 $(BIN): $(SRC)
 	$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS)
@@ -45,7 +45,7 @@ strip: $(BIN)
 
 dist:
 	mkdir -p nnn-$(VERSION)
-	$(CP) $(DISTFILES) nnn-$(VERSION)
+	$(CP) -r $(DISTFILES) nnn-$(VERSION)
 	tar -cf nnn-$(VERSION).tar nnn-$(VERSION)
 	gzip nnn-$(VERSION).tar
 	$(RM) -r nnn-$(VERSION)
diff --git a/nnn.c b/src/nnn.c
similarity index 100%
rename from nnn.c
rename to src/nnn.c
diff --git a/nnn.h b/src/nnn.h
similarity index 100%
rename from nnn.h
rename to src/nnn.h