Forum Discussion
Altera_Forum
Honored Contributor
16 years ago$(SUB_FOLDER) is just a variable in the makefile. Using the working structure above, in the makefile:
SUB_FOLDER = "../../Altera/nios2/sub-folder/application" ... $(ROMFSINST) $(SUB_FOLDER) /home/application However, this is a much different method than the one proposed by mschnell. The symlink is not 'in' the makefile. Basically, you set up the structure that you want in the file system, and you create a symbolic link from 'their' folder to 'yours'. That way you don't mess with their structure (could give you a big headache later if you don't document the changes properly). Although your method might work, I wouldn't mess around too much with the Makefile...