Skip to content

Commit

Permalink
Make true quiet and run.sh echo make command.
Browse files Browse the repository at this point in the history
  • Loading branch information
mithro committed Sep 13, 2015
1 parent 33dfb73 commit 44001dd
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 16 deletions.
5 changes: 3 additions & 2 deletions .travis/run.sh
Expand Up @@ -13,14 +13,15 @@ for BOARD in $BOARDS; do
echo "============================================="
echo "- $BOARD $TARGET"
echo "---------------------------------------------"
echo "- make help ---------------------------------"
BOARD=$BOARD TARGET=$TARGET make help
echo "---------------------------------------------"

# FIXME: Add ability to compile gateware.

echo "- make firmware -----------------------------"
BOARD=$BOARD TARGET=$TARGET make firmware
echo "---------------------------------------------"

echo "- make clean --------------------------------"
BOARD=$BOARD TARGET=$TARGET make clean
echo "============================================="
done
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -54,7 +54,7 @@ release-gateware:

# Firmware targets
firmware: firmware-$(TARGET)
true
@true

connect-lm32:
$(FLTERM) --port $(SERIAL) --speed 115200
Expand Down
10 changes: 5 additions & 5 deletions Makefile.base
@@ -1,16 +1,16 @@
help-base:
true
@true

gateware-base:
true
@true

firmware-base:
true
cd $(MSCDIR) && $(CMD) build-headers

load-base:
true
@true

clean-base:
true
@true

.PHONY: help-base gateware-base firmware-base load-base clean-base
8 changes: 4 additions & 4 deletions Makefile.hdmi2ethernet
Expand Up @@ -3,16 +3,16 @@ help-hdmi2ethernet:
@echo " make load-lm32-firmware"

gateware-hdmi2ethernet: lm32-firmware
true
@true

firmware-hdmi2ethernet: lm32-firmware
true
@true

load-hdmi2ethernet: load-lm32-firmware
true
@true

clean-hdmi2ethernet: clean-lm32-firmware
true
@true

# Firmware for the lm32 softcore
lm32-firmware:
Expand Down
8 changes: 4 additions & 4 deletions Makefile.hdmi2usb
Expand Up @@ -6,16 +6,16 @@ help-hdmi2usb:
@echo " make view"

gateware-hdmi2usb: lm32-firmware
true
@true

firmware-hdmi2usb: lm32-firmware fx2-firmware
true
@true

load-hdmi2usb: load-lm32-firmware
true
@true

clean-hdmi2usb: clean-lm32-firmware clean-fx2-firmware
true
@true

# Firmware for the lm32 softcore
lm32-firmware:
Expand Down

0 comments on commit 44001dd

Please sign in to comment.