diff options
author | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2024-03-07 12:34:36 +0100 |
---|---|---|
committer | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2024-03-07 12:34:36 +0100 |
commit | e0ba2622a56407ac48b1410114920237f68bc73e (patch) | |
tree | b6d2cb24bb23ee00a07ebc91e2ec405512f2a4cf /pnr | |
parent | e96efbe9496c8f9718869791fa30e444f42ffb38 (diff) |
pnr/makefile: fixed bug in rtlview target
Diffstat (limited to 'pnr')
-rw-r--r-- | pnr/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pnr/makefile b/pnr/makefile index 7d2752a..163d927 100644 --- a/pnr/makefile +++ b/pnr/makefile @@ -71,8 +71,8 @@ warnings: $(LOG_FILE) rtlview: $(PROJECT).qpf @echo "---- $@" >> $(LOG_FILE) 2>&1 @$(TIME_STAMP) - @#(quartus_sh -t ../../scripts/quartus_project_flow.tcl -projectname \ - $(PROJECT) -process compile >> $(LOG_FILE) 2>&1 || (grep "Error (" $(LOG_FILE) && false)) + @quartus_sh -t ../../scripts/quartus_project_flow.tcl -projectname $(PROJECT) \ + -process compile >> $(LOG_FILE) 2>&1 || (grep "Error (" $(LOG_FILE) && false) @quartus_map --read_settings_files=on --write_settings_files=off \ $(PROJECT) -c $(PROJECT) --analysis_and_elaboration >> $(LOG_FILE) 2>&1 @quartus $(PROJECT).qpf & |