# bin2c util
# (c)2000 Megan Potter

all: bin2c

bin2c: bin2c.c
	gcc -o $@ $^

clean:
	-rm -f bin2c
