]> git.sur5r.net Git - cc65/commitdiff
Removed references to $TRAVIS from Makefiles.
authorOliver Schmidt <ol.sc@web.de>
Sun, 16 Mar 2014 20:31:00 +0000 (21:31 +0100)
committerOliver Schmidt <ol.sc@web.de>
Sun, 16 Mar 2014 20:32:18 +0000 (21:32 +0100)
After all it seems much cleaner to explicitly control the behaviour from the .travis.yml file than to behave differently "under the hood" when detecting a Travis CI build.

.travis.yml
libsrc/Makefile
src/Makefile

index e2f64a7b73ef538c867b190e16bf4bf6a5ef8247..eae13f70ef177e8e0f21c4498e65b301ddd8eb91 100644 (file)
@@ -3,8 +3,10 @@ language:
 install:
   - sudo apt-get install linuxdoc-tools linuxdoc-tools-info binutils-mingw-w64-i686 gcc-mingw-w64-i686
 script:
-  - make
-  - make -C src clean bin CROSS_COMPILE=i686-w64-mingw32-
+  - make bin USER_CFLAGS=-Werror
+  - make lib QUIET=1
+  - make -C src clean
+  - make bin USER_CFLAGS=-Werror CROSS_COMPILE=i686-w64-mingw32-
   - make doc zip
 after_success:
   - make -f Makefile.gh-pages
index 86eb80b7ccd4bd520a9ca84231f71fcc1b16cfb7..f7afd498f25ecdc137760d39bc32db748d919f1a 100644 (file)
@@ -253,14 +253,14 @@ export CC65_HOME := $(abspath ..)
 
 define ASSEMBLE_recipe
 
-$(if $(TRAVIS),,@echo $(TARGET) - $<)
+$(if $(QUIET),,@echo $(TARGET) - $<)
 @$(CA65) -t $(TARGET) $(CA65FLAGS) --create-dep $(@:.o=.d) -o $@ $<
 
 endef # ASSEMBLE_recipe
 
 define COMPILE_recipe
 
-$(if $(TRAVIS),,@echo $(TARGET) - $<)
+$(if $(QUIET),,@echo $(TARGET) - $<)
 @$(CC65) -t $(TARGET) $(CC65FLAGS) --create-dep $(@:.o=.d) --dep-target $@ -o $(@:.o=.s) $<
 @$(CA65) -t $(TARGET) -o $@ $(@:.o=.s)
 
index 0ab43081a755133df6c60e1a80551e182468425f..17754190c501bc38a065c0e53c0dc419ae8201e4 100644 (file)
@@ -30,13 +30,20 @@ LD65_CFG = $(datadir)/cfg
 CC = $(CROSS_COMPILE)gcc
 AR = $(CROSS_COMPILE)ar
 
+ifdef CROSS_COMPILE
+  $(info CC: $(CC))
+  $(info AR: $(AR))
+endif
+
+ifdef USER_CFLAGS
+  $(info USER_CFLAGS: $(USER_CFLAGS))
+endif
+
 CFLAGS += -MMD -MP -O -I common \
           -Wall -Wextra -Wno-char-subscripts $(USER_CFLAGS) \
           -DCA65_INC=$(CA65_INC) -DCC65_INC=$(CC65_INC) \
           -DLD65_LIB=$(LD65_LIB) -DLD65_OBJ=$(LD65_OBJ) -DLD65_CFG=$(LD65_CFG)
 
-CFLAGS += $(if $(TRAVIS),-Werror)
-
 LDLIBS += -lm
 
 ifdef CMD_EXE