From: fennecdjay Date: Wed, 9 Oct 2019 20:18:28 +0000 (+0200) Subject: :wrench: Travis Fold ? X-Git-Tag: nightly~2198^2~58 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=7635e42a036b7913d4b67361d4bd97e3f9e27240;p=gwion.git :wrench: Travis Fold ? --- diff --git a/Makefile b/Makefile index ce7a4a0f..bbf3df6c 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,6 @@ vm_src := $(wildcard src/vm/*.c) parse_src := $(wildcard src/parse/*.c) util_src := $(wildcard src/util/*.c) emit_src := $(wildcard src/emit/*.c) -opt_src := $(wildcard opt/*.c) test_dir_all := $(wildcard tests/*) test_ignore = tests/benchmark tests/import @@ -29,11 +28,6 @@ ifeq (${DEBUG_STACK}, 1) CFLAGS += -DDEBUG_STACK endif -ifeq (${USE_OPTIMIZE}, 1) -util_src += ${opt_src} -CFLAGS+= -DOPTIMIZE -endif - ifeq (${BUILD_ON_WINDOWS}, 1) CFLAGS += -DBUILD_ON_WINDOWS -D_XOPEN_SOURCE=700 else @@ -89,10 +83,10 @@ _LDFLAGS = ${GWLIBS} ${LDFLAGS} all: travis_start 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:compile ${GWION_PACKAGE}"; fi + @ if [ ${IN_TRAVIS} = 1 ]; then echo "travis_end:start:compilation"; fi travis_start: - @ if [ ${IN_TRAVIS} = 1 ]; then echo "travis_fold:start:compile ${GWION_PACKAGE}"; fi + @ if [ ${IN_TRAVIS} = 1 ]; then echo "travis_fold:start:compilation"; fi options-show: @$(call _options)