Inside ~/cs558/NS, you will have symbolic links to the actual source files. (Most of the sources will be unchanged, so symbolic links are the most efficient way to make a duplicate distribution)
Read the next section if you need to make changes to a file
The parameter ALIAS will be explained next.
It is hard to keep track of all the files that has been changed.
The command
will also create a symbolic name called ALIAS inside the ~/cs558/NS/00-newcodes directory that points to the real file copy.
This approach has the advantage that related codes are found in one place.
But it makes it very hard to find your new code (especially after some time).
OBJ_CC = \ 01-newcodes/PROGFILE.o \ .... (other lines in Makefile) |
Make very certain that the "\" character is the last character in the line !!!