all: bres blc bmerge
	$(bres)
	$(blc)
	$(bmerge)

bres: bres.c short.c short.h
	$(CC) bres.c short.c -obres

blc: blc.c short.c short.h
	$(CC) blc.c short.c -oblc

bmerge: bmerge.c short.c short.h
	$(CC) bmerge.c short.c -obmerge


