]> Nishi Git Mirror - gwion.git/commitdiff
:wrench: Travis Fold ?
authorfennecdjay <astor.jeremie@wanadoo.fr>
Wed, 9 Oct 2019 20:18:28 +0000 (22:18 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Wed, 9 Oct 2019 20:18:28 +0000 (22:18 +0200)
Makefile

index ce7a4a0f4c5cc99fde8f343fa90e66a988dc895b..bbf3df6cbfee020d694f43b3ab9d199083e59a0f 100644 (file)
--- 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)