My interest in POMAKE is akin to that of the old Unix or GNU make; I'd like to have my one workspace, with multiple projects, and to be able to tell the IDE to make one version or the other. Something like: POMAKE myprogram static or POMAKE myprogram dll.
Actually what you're describing is something you can do directly from the IDE...
Install the
Workspace Editor AddIn So you can create a workspace (.ppw) file independently of the New Project wizard.
Create the root folder for your workspace by hand.
Select File->New->Project... in the wizard at the bottom select the workspace folder in the Location bar... then create your first project by typing it's name...
Follow on this by creating your other projects... editing the paths etc. as necessary.
Now click File -> Edit Workspace Files ... from there you can add your projects to your own custom workspace and save the file anyplace you like. (I'm assuming you will want to use the base workspace folder)...
To open your custom workspace... just double click it in explorer and let POIDE open it by file association. Or you can use File-> Open and select it there.
Now you can add files to your projects... keep in mind that projects can share the same source files, even if it builds them differently (Take a look at the source code for the workspace editor... you'll see what I mean)
To build any of your projects just select Project -> Build or click the Build button on the IDE's toolbar. To rebuild, select Project -> Rebuild. Project -> Rebuild Workspace will rebuild everything in one pass.
Easy stuff...