Note Makefile.native differences

This commit is contained in:
Arun Prakash Jana 2017-09-02 12:47:02 +05:30
parent f6cb248975
commit 17350ecca4
No known key found for this signature in database
GPG Key ID: A75979F35C080412
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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