FILES = koupd

all: $(FILES)

% : %.asm
	fasm $<
	ld -o $@ ../samples/common.o $@.o
	rm -f $@.o
clean:
	rm -f *~ $(FILES)
