.PHONY: all clean FBC ?= fbc FBFLAGS = -lang fb LDFLAGS = -l readline all: test repl test: test.bas util.bas repl: repl.bas readline.bi %: %.bas $(FBC) $(FBFLAGS) $(LDFLAGS) $< clean: $(RM) *.o *.a *.so test repl