# Makefile for generating misc BefOS pages. # $Id: Makefile 62 2006-02-05 04:39:58Z catseye $ CP=cp OBJDIR=../../obj BINDIR=../../bin all: $(OBJDIR)/welcome.bin $(OBJDIR)/legend.bin $(OBJDIR)/keybind.bin $(OBJDIR)/welcome.bin: welcome.txt $(BINDIR)/txt2page < welcome.txt > $@ $(OBJDIR)/legend.bin: legend.bin $(CP) legend.bin $@ $(OBJDIR)/keybind.bin: ../inc/befkeys.inc $(BINDIR)/mkkeypg.pl < ../inc/befkeys.inc | column -c 79 | expand | $(BINDIR)/txt2page > $@ clean: rm -f $(OBJDIR)/*.bin