
all: guage charof

guage:
	$(CC) -O3 -s -o guage guage.c

charof:
	$(CC) -O3 -s -o charof charof.c

install: guage charof
	install guage /usr/bin/guage
	install charof /usr/bin/charof

clean:
	rm -f guage guage.o charof charof.o

