The Frotz Makefile has
all: $(FROTZ_BIN) $(DFROTZ_BIN) $(SFROTZ_BIN) $(XFROTZ_BIN)
The existing port is limited to frotz_bin only. If build.target is not
specified all 4 are built. But is there an interest in building for X11
anymore? The next decision is to install them individually as variants or
subports. But I wonder if it is advantageous (or even possible) to do something
like this:
def install
targets = %w[frotz dumb sdl]
targets.each do |target|
system "make", target, *args
end
targets.each do |target|
system "make", "install_#{target}", *args
end
end
Mark Brethen
[email protected]