LINKFLAGS += -N 32_character_string_with_no_spaces
You can put spaces in the string by using the \20 character. So the above
line would read:
LINKFLAGS += -N 32\20character\20string\20with\20spaces
So, what I do in my local.mk file is:
LINKFLAGS += -N Blue\20Marsh\20Softworks
Nathan