#Homework 3 Makefile
#####################
#Platform considerations

ifndef	pf
	pf = unix
	pf = cyg
endif

ifeq (${pf}, cyg)
	p = a.exe

else
ifeq (${pf}, unix)
	p = a.out

endif
endif
#####################

compile:
	cc -o tgcd  hw3.c

test:
	cc -o tgcd  hw3.c && ./tgcd 2 3 15 9 123456 7890 123 456789 98765 4321 987654 3210

tar:
	tar cvf kojokumah.tar hw3.c makefile readme