all:
	cc -Wall concat.c -o concat -lm

cleandir: clean

clean:
	rm -f core *.o *~ concat
