Retire Makefile.native

This commit is contained in:
Arun Prakash Jana 2017-12-26 23:49:47 +05:30
parent 9bfc2fdc29
commit 0f27c2f01c
No known key found for this signature in database
GPG Key ID: A75979F35C080412
2 changed files with 3 additions and 61 deletions

View File

@ -27,12 +27,9 @@ matrix:
compiler: clang
script:
export CFLAGS=-Werror;
make clean;
make;
make clean;
make -f scripts/make_native/Makefile.native;
make clean;
- export CFLAGS=-Werror;
- make clean; make;
- make clean;
before_deploy:
- unset CFLAGS

View File

@ -1,55 +0,0 @@
# This Makefile optimizes native builds. It
# - 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.6
PREFIX ?= /usr/local
MANPREFIX = $(PREFIX)/share/man
CFLAGS += -O3 -march=native -Wall -Wextra -Wno-unused-parameter
LDLIBS = -lreadline
ifeq ($(shell pkg-config ncursesw && echo 1),1)
CFLAGS += $(shell pkg-config --cflags ncursesw)
LDLIBS += $(shell pkg-config --libs ncursesw)
else
LDLIBS += -lncurses
endif
DISTFILES = nlay nnn.c nnn.h nnn.1 Makefile README.md LICENSE
SRC = nnn.c
BIN = nnn
PLAYER = nlay
all: $(BIN) $(PLAYER)
$(SRC): nnn.h
$(BIN): $(SRC)
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS)
strip $@
install: all
mkdir -p $(DESTDIR)$(PREFIX)/bin
cp -f $(BIN) $(DESTDIR)$(PREFIX)/bin
cp -f $(PLAYER) $(DESTDIR)$(PREFIX)/bin
mkdir -p $(DESTDIR)$(MANPREFIX)/man1
cp -f $(BIN).1 $(DESTDIR)$(MANPREFIX)/man1
uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/$(BIN)
rm -f $(DESTDIR)$(PREFIX)/bin/$(PLAYER)
rm -f $(DESTDIR)$(MANPREFIX)/man1/$(BIN).1
dist:
mkdir -p nnn-$(VERSION)
cp $(DISTFILES) nnn-$(VERSION)
tar -cf nnn-$(VERSION).tar nnn-$(VERSION)
gzip nnn-$(VERSION).tar
rm -rf nnn-$(VERSION)
clean:
rm -f $(BIN) nnn-$(VERSION).tar.gz