*.PinkMake
file? If you don't specify any link files, CreateMake
links all library files. As you can imagine, this is not economical. Currently, the only way to determine which link files to include is by trial and error, and with a little help from FindSymbols
. This section describes that process.
Consider this makefile description called JustAView.PinkMake
. JustAView builds a shared library and an application binary. To link all library files, create JustAView.PinkMake
like this:
library JustAViewLib { source: MyView.C } binary JustAView { source: Main.C }