From 7b735ee023e37e173122768f84a3b9ca882452b8 Mon Sep 17 00:00:00 2001 From: fennecdjay Date: Wed, 9 Oct 2019 23:03:59 +0200 Subject: [PATCH] :wrench: Remove travis in Makefile --- Makefile | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/Makefile b/Makefile index bbf3df6c..c82cce91 100644 --- a/Makefile +++ b/Makefile @@ -64,12 +64,6 @@ ifeq ($(shell uname), Linux) LDFLAGS += -lrt -rdynamic endif -ifeq (${TRAVIS}, true) -IN_TRAVIS = 1 -else -IN_TRAVIS = 0 -endif - INSTALLED_INCLUDE = -I${PREFIX}/include/gwion -I${PREFIX}/include/gwion/util -I${PREFIX}/include/gwion/ast CCFG="${INSTALLED_INCLUDE} ${CFLAGS}" LDCFG="${LDFLAGS}" @@ -80,13 +74,9 @@ CFLAGS += -DGWION_BUILTIN GWLIBS = libgwion.a ast/libgwion_ast.a util/libgwion_util.a _LDFLAGS = ${GWLIBS} ${LDFLAGS} -all: travis_start options-show util/libgwion_util.a ast/libgwion_ast.a libgwion.a src/main.o +all: options-show util/libgwion_util.a ast/libgwion_ast.a libgwion.a src/main.o $(info link ${PRG}) @${CC} src/main.o -o ${PRG} ${_LDFLAGS} ${LIBS} - @ if [ ${IN_TRAVIS} = 1 ]; then echo "travis_end:start:compilation"; fi - -travis_start: - @ if [ ${IN_TRAVIS} = 1 ]; then echo "travis_fold:start:compilation"; fi options-show: @$(call _options) -- 2.43.0