
SOURCES := $(wildcard *.bas)
TARGETS := $(SOURCES:%.bas=%)

BFLAGS := -i ../../FreeBASIC

all: $(TARGETS)

%: %.bas
	@fbc $(BFLAGS) $<
