From: fennecdjay Date: Wed, 9 Oct 2019 21:03:59 +0000 (+0200) Subject: :wrench: Remove travis in Makefile X-Git-Tag: nightly~2198^2~51 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=7b735ee023e37e173122768f84a3b9ca882452b8;p=gwion.git :wrench: Remove travis in Makefile --- 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)