###################################################
# VARIABLES
p=gcd2
p=gcd

input1 = 24
input2 = 17
input3 = 18
input4 = 10
input5 = 987654321
input6 = 123456

###################################################
# TARGETS

default gcc:
	gcc ${p}.c


tar: gcd.c Makefile README
	tar cvf gcd.tar gcd.c Makefile README

time h3 hw3 gcd2:
	gcc -o ${p} ${p}.c
	time ${p} ${input1} ${input2} ${input3} ${input4} ${input5} ${input6}

