On Tue, 26 Jan 2016 17:05:25 -0800 (PST), Efudd <
jason...@gmail.com>
wrote:
>Indeed. I helped some (tried, Trifle and I work a little differently)
I added your work to the pot. But I did revise it, to fit my framework
and style. That's what editors do to authors. They mash the potato.
I am the first one who got the PCBoard source compiling, so I consider
myself the de facto editor of this "project." If you can call it that.
With only three people known to be interested, it's not much of a
project. For me it's more about programming and code than any desire to
actually run a BBS.
>I just don't want to duplicate work if he's made further progress with a
>new build system.
My new build system works. The reason I wanted it was to have a better
environment for debugging. You can't build the whole PCBoard executable
with debugging symbols on every module, it's too big and won't run.
In my new build system, I use a single command that builds the whole
thing, lib and main, and spits out the final executable.
When I want debugging symbols on a few modules, I go back into the
source\obj tree and delete the objects for the modules in question. Then
rebuild just those objects and relink to produce a new executable, which
is small enough to actually run. It's been so long since I've done that,
I don't remember the exact steps. But it's not hard. Much easier than
trying to use the CDC build system.
It's all kind of pointless unless you use it for debugging with Turbo
Debugger. But if you're really into that, I can package it up for you.