# Makefile for hw3
###################################################
# VARIABLES
p=gcd2
p=hw3_gcd

input1 = 24
input2 = 17
input3 = 18
input4 = 10
input5 = 987654321
input6 = 123456

###################################################
# TARGETS

p default gcc ${p}:
	gcc -o ${p} ${p}.c

t time h3 hw3: ${p}
	time ${p} ${input1} ${input2} ${input3} ${input4} ${input5} ${input6}


###################################################
tar: gcd.c Makefile README
	tar cvf gcd.tar gcd.c Makefile README

