From: Arun Prakash Jana <engineerarun@gmail.com>
Date: Sat, 2 Sep 2017 07:17:02 +0000 (+0530)
Subject: Note Makefile.native differences
X-Git-Tag: v1.4~9
X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=17350ecca428a101da9038652629c5f78d007543;p=nnn.git

Note Makefile.native differences
---

diff --git a/.travis.yml b/.travis.yml
index b3567767..0e882a62 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,7 +21,7 @@ script:
   make clean;
   make;
   make clean;
-  make -f Makefile.native;
+  make -f scripts/make_native/Makefile.native;
 
 before_deploy:
   - unset CFLAGS
diff --git a/scripts/make_native/Makefile.native b/scripts/make_native/Makefile.native
index b91a3e06..4ceff020 100644
--- a/scripts/make_native/Makefile.native
+++ b/scripts/make_native/Makefile.native
@@ -1,3 +1,10 @@
+# This Makefile optimizes native builds. It
+#   - enables -O3 optimization
+#   - builds for native architecture (-march=native)
+#   - does not have debug build option
+#
+# NOTE: This file is used in Travis CI for stricter test builds
+
 VERSION = 1.3
 
 PREFIX ?= /usr/local