diff options
author | Johann Faerber <johann.faerber@hs-augsburg.de> | 2023-03-23 15:20:02 +0100 |
---|---|---|
committer | Johann Faerber <johann.faerber@hs-augsburg.de> | 2023-03-23 15:20:02 +0100 |
commit | acb927555f077ffc80bc38575537e9bf2a5b5793 (patch) | |
tree | 65c156014fc8efd401ddea00fc490cafa8053921 | |
parent | df418208aa0570a99f6ab6657d54ee65d6162168 (diff) |
makefile.ghdl - now shows errors on command line
-rw-r--r-- | sim/makefile.ghdl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/makefile.ghdl b/sim/makefile.ghdl index e7857b1..8bcf134 100644 --- a/sim/makefile.ghdl +++ b/sim/makefile.ghdl @@ -37,7 +37,7 @@ gproject_created : $(SOURCE_FILES) makefile.sources @rm -rf ./ghdl_sources.tcl @# Create a directory work if it does not exist. Otherwise do nothing. @[ -d work ] || mkdir -p work - @$(GHDL_CMD) -i $(GHDL_OPTIONS) $(SOURCE_FILES) >> $(LOG_FILE) 2>&1 + @$(GHDL_CMD) -i $(GHDL_OPTIONS) $(SOURCE_FILES) 2>&1 | tee -a $(LOG_FILE) @touch gproject_created compile: ./work/work-obj08.cf |