You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The external library in mode "list and make" or "list" creates a makefile. This makefile contains in line 9:
include$(ALL_FIGURE_NAMES:%=%.dep)
When running for the first time, it creates the following error:
<main.makefile:9: main-figure0.dep: No such file or directory>
Replacing this line with
-include$(ALL_FIGURE_NAMES:%=%.dep)
would fix it. The minus sign in front tells make, not to complain if the file does not exist, but include it, if it is there.
#external
The text was updated successfully, but these errors were encountered:
The external library in mode "list and make" or "list" creates a makefile. This makefile contains in line 9:
When running for the first time, it creates the following error:
<main.makefile:9: main-figure0.dep: No such file or directory>
Replacing this line with
would fix it. The minus sign in front tells make, not to complain if the file does not exist, but include it, if it is there.
#external
The text was updated successfully, but these errors were encountered: