Forum Discussion
Altera_Forum
Honored Contributor
8 years agoHi! I know this is an old post, but I had the same issue some weeks ago so I think it may be useful for someone to have here the solution.
The problem here is this line: build:$(TARGET) As far as I know, when you run the command "make" in DS-5, what it really does is to run the command "make all", so the compiler looks for the label "all" into the Makefile. In this Makefile, this label does not exist, and that's because you ended up with that error. So, to fix this problem you only have to change the label "build" by the label "all" and it should work fine.