CC=gcc
CFLAGS=-O

tools: txt24th 4th2txt binit

binit: binit.o
	rm -f binit
	$(CC) $(CFLAGS) -o binit binit.o

txt24th: txt24th.o
	rm -f txt24th
	$(CC) $(CFLAGS) -o txt24th txt24th.o

4th2txt: 4th2txt.o
	rm -f 4th2txt
	$(CC) $(CFLAGS) -o 4th2txt 4th2txt.o

clean:
	rm -f *.o

clobber: clean
	rm -f binit txt24th 4th2txt
