mirror of
https://github.com/jarun/nnn.git
synced 2024-11-04 18:33:12 +00:00
Note Makefile.native differences
This commit is contained in:
parent
f6cb248975
commit
17350ecca4
|
@ -21,7 +21,7 @@ script:
|
||||||
make clean;
|
make clean;
|
||||||
make;
|
make;
|
||||||
make clean;
|
make clean;
|
||||||
make -f Makefile.native;
|
make -f scripts/make_native/Makefile.native;
|
||||||
|
|
||||||
before_deploy:
|
before_deploy:
|
||||||
- unset CFLAGS
|
- unset CFLAGS
|
||||||
|
|
|
@ -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
|
VERSION = 1.3
|
||||||
|
|
||||||
PREFIX ?= /usr/local
|
PREFIX ?= /usr/local
|
||||||
|
|
Loading…
Reference in a new issue