ARCH=linux
# ARCH=DOS

all: check hubread

check: check.c
	gcc check.c
	strip a.out
	mv a.out check-$(ARCH)

hubread: hubread.c
	gcc hubread.c
	strip a.out
	mv a.out hubread

all: check hubread

#