# Makefile for the Protolexicon system


PROGRAM = src/pl.ss

$(PROGRAM): src
	(cd src;  make)

protolexicon: $(PROGRAM)
	$(PROLOG) $(PROLOGARGS) $(PROGRAM)

