FILES = leds vtinfo devinfo

all: $(FILES)

% : %.asm
	fasm $<
	ld -o $@ ../common.o $@.o
	rm -f $@.o

clean:
	rm -f *~ $(FILES)