OBJ = AllanDump.o AllanRead.o AllanSort.o

SplitStruthersSort: $(OBJ)
	gcc -o SplitStruthersSort SplitStruthersSort.c $(OBJ)
	
AllanDump.o: AllanDump.c
	gcc -c -o $@ $<
	
AllanRead.o: AllanRead.c
	gcc -c -o $@ $<
	
AllanSort.o: AllanSort.c
	gcc -c -o $@ $<
	
.PHONY: clean
clean:
	rm -f SplitStruthersSort *.o
