<html><head><meta http-equiv="Content-Type" content="text/html; charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class=""><div class="">The Frotz Makefile has</div><div class=""><br class=""></div><div class="">all: $(FROTZ_BIN) $(DFROTZ_BIN) $(SFROTZ_BIN) $(XFROTZ_BIN) </div><div class=""><br class=""></div><div class="">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:</div><div class=""><br class=""></div><div class=""><pre style="word-wrap: break-word; white-space: pre-wrap;" class="">  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</pre><div class=""><br class=""></div></div><br class=""><div class="">
<div class="">Mark Brethen</div><div class=""><a href="mailto:mark.brethen@gmail.com" class="">mark.brethen@gmail.com</a></div><div class=""><br class=""></div><br class="Apple-interchange-newline">

</div>

<br class=""></body></html>