
all: indsort

indsort: indsort.c 
	gcc -O -Wall indsort.c -lm -o indsort
	strip indsort


